diff options
Diffstat (limited to 'drivers/message')
-rw-r--r-- | drivers/message/i2o/i2o_block.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/message/i2o/i2o_block.c b/drivers/message/i2o/i2o_block.c index 81483de8c0fd..71500dda8eb3 100644 --- a/drivers/message/i2o/i2o_block.c +++ b/drivers/message/i2o/i2o_block.c | |||
@@ -931,9 +931,9 @@ static void i2o_block_request_fn(struct request_queue *q) | |||
931 | /* I2O Block device operations definition */ | 931 | /* I2O Block device operations definition */ |
932 | static struct block_device_operations i2o_block_fops = { | 932 | static struct block_device_operations i2o_block_fops = { |
933 | .owner = THIS_MODULE, | 933 | .owner = THIS_MODULE, |
934 | .open = i2o_block_open, | 934 | .__open = i2o_block_open, |
935 | .release = i2o_block_release, | 935 | .__release = i2o_block_release, |
936 | .ioctl = i2o_block_ioctl, | 936 | .__ioctl = i2o_block_ioctl, |
937 | .getgeo = i2o_block_getgeo, | 937 | .getgeo = i2o_block_getgeo, |
938 | .media_changed = i2o_block_media_changed | 938 | .media_changed = i2o_block_media_changed |
939 | }; | 939 | }; |