diff options
| -rw-r--r-- | drivers/block/ll_rw_blk.c | 2 | ||||
| -rw-r--r-- | lib/string.c | 4 | ||||
| -rw-r--r-- | net/core/dev.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c index 1d01bbf6c9c7..37ce8d2e1b66 100644 --- a/drivers/block/ll_rw_blk.c +++ b/drivers/block/ll_rw_blk.c @@ -1142,7 +1142,7 @@ static inline void __generic_unplug_device(request_queue_t *q) /** * generic_unplug_device - fire a request queue - * @data: The &request_queue_t in question + * @q: The &request_queue_t in question * * Description: * Linux uses plugging to build bigger requests queues before letting diff --git a/lib/string.c b/lib/string.c index d2f23f2c1e69..603c7174f41e 100644 --- a/lib/string.c +++ b/lib/string.c @@ -445,8 +445,8 @@ void * memset(void * s,int c,size_t count) #ifndef __HAVE_ARCH_BCOPY /** * bcopy - Copy one area of memory to another - * @src: Where to copy from - * @dest: Where to copy to + * @srcp: Where to copy from + * @destp: Where to copy to * @count: The size of the area. * * Note that this is the same as memcpy(), with the arguments reversed. diff --git a/net/core/dev.c b/net/core/dev.c index 43c273e74a7d..02a254cd369c 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -785,7 +785,7 @@ int dev_alloc_name(struct net_device *dev, const char *name) /** * dev_change_name - change name of a device * @dev: device - * @name: name (or format string) must be at least IFNAMSIZ + * @newname: name (or format string) must be at least IFNAMSIZ * * Change name of a device, can pass format strings "eth%d". * for wildcarding. |
