diff options
author | Damien Le Moal <[email protected]> | 2020-07-06 21:33:54 +0900 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2020-07-08 01:03:44 -0400 |
commit | 91e08b35a8a87971b6615b2b0ed432a0bac44acf (patch) | |
tree | abb28c43686f66a750038704e6000dee7203cf9d | |
parent | b1a557c23616b3814baea0a79233ef6a5e09fca8 (diff) |
scsi: sd: Fix kdoc comment format
Fix the kdoc comment of the function sd_ioctl_common() to avoid a compiler
warning when compiling with W=1.
No functional changes.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Damien Le Moal <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/sd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index d90fefffe31b..acde0ca35769 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -1479,7 +1479,7 @@ static int sd_getgeo(struct block_device *bdev, struct hd_geometry *geo) * @bdev: target block device * @mode: FMODE_* mask * @cmd: ioctl command number - * @arg: this is third argument given to ioctl(2) system call. + * @p: this is third argument given to ioctl(2) system call. * Often contains a pointer. * * Returns 0 if successful (some ioctls return positive numbers on |