diff options
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index aaa3d465de4e..21b04d39ba3b 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -5046,9 +5046,9 @@ static int md_revalidate(struct gendisk *disk) | |||
5046 | static struct block_device_operations md_fops = | 5046 | static struct block_device_operations md_fops = |
5047 | { | 5047 | { |
5048 | .owner = THIS_MODULE, | 5048 | .owner = THIS_MODULE, |
5049 | .open = md_open, | 5049 | .__open = md_open, |
5050 | .release = md_release, | 5050 | .__release = md_release, |
5051 | .ioctl = md_ioctl, | 5051 | .__ioctl = md_ioctl, |
5052 | .getgeo = md_getgeo, | 5052 | .getgeo = md_getgeo, |
5053 | .media_changed = md_media_changed, | 5053 | .media_changed = md_media_changed, |
5054 | .revalidate_disk= md_revalidate, | 5054 | .revalidate_disk= md_revalidate, |