Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Drivers: hv: vmbus: Fix typos in vmbus_drv.c

Fix two minor typos in vmbus_drv.c:
- Correct "reponsible" -> "responsible" in a comment.
- Add missing newline in pr_err() message ("channeln" -> "channel\n").

These are cosmetic changes only and do not affect functionality.

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>

authored by

Alok Tiwari and committed by
Wei Liu
a3a4d6cb 332bf98d

+2 -2
+2 -2
drivers/hv/vmbus_drv.c
··· 1947 1947 * is running. 1948 1948 * For example, HV_NIC device is used either by uio_hv_generic or hv_netvsc at any given point of 1949 1949 * time, and "ring" sysfs is needed only when uio_hv_generic is bound to that device. To avoid 1950 - * exposing the ring buffer by default, this function is reponsible to enable visibility of 1950 + * exposing the ring buffer by default, this function is responsible to enable visibility of 1951 1951 * ring for userspace to use. 1952 1952 * Note: Race conditions can happen with userspace and it is not encouraged to create new 1953 1953 * use-cases for this. This was added to maintain backward compatibility, while solving ··· 2110 2110 ret = vmbus_add_channel_kobj(child_device_obj, 2111 2111 child_device_obj->channel); 2112 2112 if (ret) { 2113 - pr_err("Unable to register primary channeln"); 2113 + pr_err("Unable to register primary channel\n"); 2114 2114 goto err_kset_unregister; 2115 2115 } 2116 2116 hv_debug_add_dev_dir(child_device_obj);