diff options
Diffstat (limited to 'drivers/scsi/sd.c')
-rw-r--r-- | drivers/scsi/sd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index 5a18528a69d0..c8b95e8d2859 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c | |||
@@ -962,12 +962,12 @@ static long sd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long a | |||
962 | 962 | ||
963 | static struct block_device_operations sd_fops = { | 963 | static struct block_device_operations sd_fops = { |
964 | .owner = THIS_MODULE, | 964 | .owner = THIS_MODULE, |
965 | .open = sd_open, | 965 | .__open = sd_open, |
966 | .release = sd_release, | 966 | .__release = sd_release, |
967 | .ioctl = sd_ioctl, | 967 | .__ioctl = sd_ioctl, |
968 | .getgeo = sd_getgeo, | 968 | .getgeo = sd_getgeo, |
969 | #ifdef CONFIG_COMPAT | 969 | #ifdef CONFIG_COMPAT |
970 | .compat_ioctl = sd_compat_ioctl, | 970 | .__compat_ioctl = sd_compat_ioctl, |
971 | #endif | 971 | #endif |
972 | .media_changed = sd_media_changed, | 972 | .media_changed = sd_media_changed, |
973 | .revalidate_disk = sd_revalidate_disk, | 973 | .revalidate_disk = sd_revalidate_disk, |