diff options
Diffstat (limited to 'drivers/block/loop.c')
-rw-r--r-- | drivers/block/loop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/loop.c b/drivers/block/loop.c index d3a25b027ff9..6faca2b7ae37 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c | |||
@@ -1355,11 +1355,11 @@ static int lo_release(struct inode *inode, struct file *file) | |||
1355 | 1355 | ||
1356 | static struct block_device_operations lo_fops = { | 1356 | static struct block_device_operations lo_fops = { |
1357 | .owner = THIS_MODULE, | 1357 | .owner = THIS_MODULE, |
1358 | .open = lo_open, | 1358 | .__open = lo_open, |
1359 | .release = lo_release, | 1359 | .__release = lo_release, |
1360 | .ioctl = lo_ioctl, | 1360 | .__ioctl = lo_ioctl, |
1361 | #ifdef CONFIG_COMPAT | 1361 | #ifdef CONFIG_COMPAT |
1362 | .compat_ioctl = lo_compat_ioctl, | 1362 | .__compat_ioctl = lo_compat_ioctl, |
1363 | #endif | 1363 | #endif |
1364 | }; | 1364 | }; |
1365 | 1365 | ||