diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-25 16:59:53 +0530 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-09-26 11:50:08 +0300 |
commit | a13afa4923a02499ff6295dcf5ef700e4baa755a (patch) | |
tree | 1b90e5a0b51575d8037b49bbadeb62bfc6c3e419 | |
parent | e72d649cf8fcde95580045233c0ee0cb488d389a (diff) |
video: kyro: Remove redundant break
'break' after return statement is redundant. Remove it.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/kyro/fbdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/kyro/fbdev.c b/drivers/video/kyro/fbdev.c index c82f0400d7d2..79bfb5c38409 100644 --- a/drivers/video/kyro/fbdev.c +++ b/drivers/video/kyro/fbdev.c @@ -623,7 +623,6 @@ static int kyrofb_ioctl(struct fb_info *info, "command instead.\n"); return -EINVAL; } - break; case KYRO_IOCTL_UVSTRIDE: if (copy_to_user(argp, &deviceInfo.ulOverlayUVStride, sizeof(unsigned long))) return -EFAULT; |