diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-10-22 19:37:13 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-29 12:24:11 -0500 |
commit | decf67e31e855963f4616912d9bc5b1c339d810a (patch) | |
tree | a80fec03c571f566699a5b30658564dd8f405eeb /drivers/scsi | |
parent | 3c92ec8ae91ecf59d88c798301833d7cf83f2179 (diff) |
[SCSI] scsi ioctl: fix kernel-doc warning
Fix kernel-doc parameter warning and correct the function name:
Warning(linux-next-20081022//drivers/scsi/scsi_ioctl.c:281): No description found for parameter 'ndelay'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/scsi_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_ioctl.c b/drivers/scsi/scsi_ioctl.c index dc1cfb2fd76b..2ee49f82ca01 100644 --- a/drivers/scsi/scsi_ioctl.c +++ b/drivers/scsi/scsi_ioctl.c | |||
@@ -270,11 +270,11 @@ int scsi_ioctl(struct scsi_device *sdev, int cmd, void __user *arg) | |||
270 | EXPORT_SYMBOL(scsi_ioctl); | 270 | EXPORT_SYMBOL(scsi_ioctl); |
271 | 271 | ||
272 | /** | 272 | /** |
273 | * scsi_nonblock_ioctl() - Handle SG_SCSI_RESET | 273 | * scsi_nonblockable_ioctl() - Handle SG_SCSI_RESET |
274 | * @sdev: scsi device receiving ioctl | 274 | * @sdev: scsi device receiving ioctl |
275 | * @cmd: Must be SC_SCSI_RESET | 275 | * @cmd: Must be SC_SCSI_RESET |
276 | * @arg: pointer to int containing SG_SCSI_RESET_{DEVICE,BUS,HOST} | 276 | * @arg: pointer to int containing SG_SCSI_RESET_{DEVICE,BUS,HOST} |
277 | * @filp: either NULL or a &struct file which must have the O_NONBLOCK flag. | 277 | * @ndelay: file mode O_NDELAY flag |
278 | */ | 278 | */ |
279 | int scsi_nonblockable_ioctl(struct scsi_device *sdev, int cmd, | 279 | int scsi_nonblockable_ioctl(struct scsi_device *sdev, int cmd, |
280 | void __user *arg, int ndelay) | 280 | void __user *arg, int ndelay) |