From: Dan Carpenter Date: Fri, 11 Jan 2013 06:52:44 +0000 (+0300) Subject: dac960: return success instead of -ENOTTY X-Git-Tag: upstream/snapshot3+hdmi~5612^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d6a87430e764cf4132710538139c10970929189;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Jens Axboe --- diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 9a13e88..0d3ffc5 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; }