summaryrefslogtreecommitdiffstats
path: root/include/scsi/scsi_device.h
diff options
context:
space:
mode:
authorDamien Le Moal <damien.lemoal@wdc.com>2021-09-29 18:17:44 +0900
committerMartin K. Petersen <martin.petersen@oracle.com>2022-01-05 00:26:08 -0500
commit81d3f500ee98cf9f5388f0fb0548ba5a57598827 (patch)
tree2a12b0be604ed4426e3296be2b1a24e04a0f96d2 /include/scsi/scsi_device.h
parent4d516e495235a8e95b482a1e9441c4043c7a8235 (diff)
downloadlinux-81d3f500ee98cf9f5388f0fb0548ba5a57598827.tar.gz
linux-81d3f500ee98cf9f5388f0fb0548ba5a57598827.tar.bz2
linux-81d3f500ee98cf9f5388f0fb0548ba5a57598827.zip
scsi: core: Fix scsi_mode_select() interface
The modepage argument is unused. Remove it. Link: https://lore.kernel.org/r/20210929091744.706003-3-damien.lemoal@wdc.com Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com> Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/scsi/scsi_device.h')
-rw-r--r--include/scsi/scsi_device.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h
index d1c6fc83b1e3..7571e23d8d8a 100644
--- a/include/scsi/scsi_device.h
+++ b/include/scsi/scsi_device.h
@@ -415,9 +415,8 @@ extern int scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
int retries, struct scsi_mode_data *data,
struct scsi_sense_hdr *);
extern int scsi_mode_select(struct scsi_device *sdev, int pf, int sp,
- int modepage, unsigned char *buffer, int len,
- int timeout, int retries,
- struct scsi_mode_data *data,
+ unsigned char *buffer, int len, int timeout,
+ int retries, struct scsi_mode_data *data,
struct scsi_sense_hdr *);
extern int scsi_test_unit_ready(struct scsi_device *sdev, int timeout,
int retries, struct scsi_sense_hdr *sshdr);