diff options
Diffstat (limited to 'arch/um/drivers/ubd_kern.c')
-rw-r--r-- | arch/um/drivers/ubd_kern.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c index b58fb8941d8d..72569cc3cbb7 100644 --- a/arch/um/drivers/ubd_kern.c +++ b/arch/um/drivers/ubd_kern.c | |||
@@ -108,9 +108,9 @@ static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo); | |||
108 | 108 | ||
109 | static struct block_device_operations ubd_blops = { | 109 | static struct block_device_operations ubd_blops = { |
110 | .owner = THIS_MODULE, | 110 | .owner = THIS_MODULE, |
111 | .open = ubd_open, | 111 | .__open = ubd_open, |
112 | .release = ubd_release, | 112 | .__release = ubd_release, |
113 | .ioctl = ubd_ioctl, | 113 | .__ioctl = ubd_ioctl, |
114 | .getgeo = ubd_getgeo, | 114 | .getgeo = ubd_getgeo, |
115 | }; | 115 | }; |
116 | 116 | ||