[PATCH] Drivers:input:mousedev.c: Fixed trailing statement on the next line

From: Athira S
Date: Sat Nov 29 2014 - 11:21:07 EST


Fixed checkpatch error:
trailing statements should be on next line

signed-off-by: Athira S <athirasnamby@xxxxxxxxx>
---
drivers/input/mousedev.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/mousedev.c b/drivers/input/mousedev.c
index be2cc5c..28988f5 100644
--- a/drivers/input/mousedev.c
+++ b/drivers/input/mousedev.c
@@ -248,8 +248,8 @@ static void mousedev_key_event(struct mousedev *mousedev,
case BTN_4:
case BTN_EXTRA: index = 4; break;

- default:
- return;
+ default:
+ return;
}

if (value) {
--
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/