diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-01-11 09:52:44 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-01-11 14:42:36 +0100 |
commit | 3d6a87430e764cf4132710538139c10970929189 (patch) | |
tree | 9d470824874135f9945a0dbb3f5f68721b87d5f8 | |
parent | 152834694dcb90d3088bc77fa436755c66553929 (diff) | |
download | linux-3.10-3d6a87430e764cf4132710538139c10970929189.tar.gz linux-3.10-3d6a87430e764cf4132710538139c10970929189.tar.bz2 linux-3.10-3d6a87430e764cf4132710538139c10970929189.zip |
dac960: return success instead of -ENOTTY
There is a missing break statement here. This used to return directly
but we re-worked it in 2008 to add locking as part of the BKL push down.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | drivers/block/DAC960.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 9a13e889837..0d3ffc51a7b 100644 --- a/drivers/block/DAC960.c +++ b/drivers/block/DAC960.c @@ -7054,6 +7054,7 @@ static long DAC960_gam_ioctl(struct file *file, unsigned int Request, else ErrorCode = 0; } + break; default: ErrorCode = -ENOTTY; } |