diff options
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index d9b1c15b8113..781b745181d2 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -197,12 +197,12 @@ static long cciss_compat_ioctl(struct file *f, unsigned cmd, unsigned long arg); | |||
197 | 197 | ||
198 | static struct block_device_operations cciss_fops = { | 198 | static struct block_device_operations cciss_fops = { |
199 | .owner = THIS_MODULE, | 199 | .owner = THIS_MODULE, |
200 | .open = cciss_open, | 200 | .__open = cciss_open, |
201 | .release = cciss_release, | 201 | .__release = cciss_release, |
202 | .ioctl = cciss_ioctl, | 202 | .__ioctl = cciss_ioctl, |
203 | .getgeo = cciss_getgeo, | 203 | .getgeo = cciss_getgeo, |
204 | #ifdef CONFIG_COMPAT | 204 | #ifdef CONFIG_COMPAT |
205 | .compat_ioctl = cciss_compat_ioctl, | 205 | .__compat_ioctl = cciss_compat_ioctl, |
206 | #endif | 206 | #endif |
207 | .revalidate_disk = cciss_revalidate, | 207 | .revalidate_disk = cciss_revalidate, |
208 | }; | 208 | }; |