From: Peter Wu Date: Tue, 16 Dec 2014 00:50:16 +0000 (+0100) Subject: HID: logitech-hidpp: avoid unintended fall-through X-Git-Tag: v3.19-rc4~11^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8abd820503e4befb28d0722f8712bdbec57e63a8;p=platform%2Fkernel%2Flinux-exynos.git HID: logitech-hidpp: avoid unintended fall-through Add a return to avoid a fall-through. Introduced in commit 57ac86cf52e903d9e3e0f12b34c814cce6b65550 ("HID: logitech-hidpp: add support of the first Logitech Wireless Touchpad"). Signed-off-by: Peter Wu Reviewed-by: Benjamin Tissoires Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index dd3c21b..66cb1b5 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -805,6 +805,7 @@ static int wtp_raw_event(struct hid_device *hdev, u8 *data, int size) input_event(wd->input, EV_KEY, BTN_RIGHT, !!(data[1] & 0x02)); input_sync(wd->input); + return 0; } else { if (size < 21) return 1;