aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/st.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2021-07-24 09:20:15 +0200
committerMartin K. Petersen <martin.petersen@oracle.com>2021-07-28 22:24:24 -0400
commit6fade4505af898c849ebe80f54313aa9c387e6da (patch)
treed89a7ebe1b88ce357b71af6745e53c3b18b4a29e /drivers/scsi/st.c
parentscsi: sg: Consolidate compat ioctl handling (diff)
downloadlinux-dev-6fade4505af898c849ebe80f54313aa9c387e6da.tar.xz
linux-dev-6fade4505af898c849ebe80f54313aa9c387e6da.zip
scsi: core: Remove scsi_compat_ioctl()
Just handle the compat case in scsi_ioctl() using in_compat_syscall(). Link: https://lore.kernel.org/r/20210724072033.1284840-7-hch@lst.de Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/st.c')
-rw-r--r--drivers/scsi/st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/st.c b/drivers/scsi/st.c
index c6f14540ae03..c3fee73e018e 100644
--- a/drivers/scsi/st.c
+++ b/drivers/scsi/st.c
@@ -3886,7 +3886,7 @@ static long st_compat_ioctl(struct file *file, unsigned int cmd_in, unsigned lon
if (ret != -ENOTTY)
return ret;
- return scsi_compat_ioctl(STp->device, cmd_in, p);
+ return scsi_ioctl(STp->device, cmd_in, p);
}
#endif