dac960: return success instead of -ENOTTY
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 11 Jan 2013 06:52:44 +0000 (09:52 +0300)
committerJens Axboe <axboe@kernel.dk>
Fri, 11 Jan 2013 13:42:36 +0000 (14:42 +0100)
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>
drivers/block/DAC960.c

index 9a13e88..0d3ffc5 100644 (file)
@@ -7054,6 +7054,7 @@ static long DAC960_gam_ioctl(struct file *file, unsigned int Request,
        else
                ErrorCode =  0;
       }
+      break;
       default:
        ErrorCode = -ENOTTY;
     }