diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-03-26 10:23:45 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-03-26 10:24:04 -0400 |
commit | 0000d031703c33b9ea909ad81f03762db66135e1 (patch) | |
tree | 27abfe41b8959c8be7a8a3017d3aafc963d0b510 /drivers/s390/block/dasd.c | |
parent | 59fa4392dddae244a1148cbbcb090b5a5728f576 (diff) |
[S390] dasd: enable compat ioctls
All of the ioctls are compatible. Just enable them.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/block/dasd.c')
-rw-r--r-- | drivers/s390/block/dasd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index 08c23a92101..93972ed7f2d 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c | |||
@@ -2101,7 +2101,8 @@ dasd_device_operations = { | |||
2101 | .owner = THIS_MODULE, | 2101 | .owner = THIS_MODULE, |
2102 | .open = dasd_open, | 2102 | .open = dasd_open, |
2103 | .release = dasd_release, | 2103 | .release = dasd_release, |
2104 | .locked_ioctl = dasd_ioctl, | 2104 | .ioctl = dasd_ioctl, |
2105 | .compat_ioctl = dasd_ioctl, | ||
2105 | .getgeo = dasd_getgeo, | 2106 | .getgeo = dasd_getgeo, |
2106 | }; | 2107 | }; |
2107 | 2108 | ||