Subject: + input-route-kbd-leds-through-the-generic-leds-layer-fix.patch added to -mm tree To: blogic@xxxxxxxxxxx,dmitry.torokhov@xxxxxxxxx,ralf@xxxxxxxxxxxxxx,samuel.thibault@xxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Wed, 30 Oct 2013 14:24:12 -0700 The patch titled Subject: input: CONFIG_INPUT_LEDS stubs should be static inline has been added to the -mm tree. Its filename is input-route-kbd-leds-through-the-generic-leds-layer-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/input-route-kbd-leds-through-the-generic-leds-layer-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/input-route-kbd-leds-through-the-generic-leds-layer-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: John Crispin <blogic@xxxxxxxxxxx> Subject: input: CONFIG_INPUT_LEDS stubs should be static inline The following commit breaks compile when CONFIG_INPUT_LEDS is not selected. commit 0eb6ee2db914ebb594cb9bc8ae97e3c362c3475a Author: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> Date: Wed Oct 30 11:45:16 2013 +1100 input: route kbd LEDs through the generic LEDs layer Signed-off-by: John Crispin <blogic@xxxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Cc: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> Cc: Dmitry Torokhov <dmitry.torokhov@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/input.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/input.h~input-route-kbd-leds-through-the-generic-leds-layer-fix include/linux/input.h --- a/include/linux/input.h~input-route-kbd-leds-through-the-generic-leds-layer-fix +++ a/include/linux/input.h @@ -540,12 +540,12 @@ void input_led_disconnect(struct input_d #else -int input_led_connect(struct input_dev *dev) +static inline int input_led_connect(struct input_dev *dev) { return 0; } -void input_led_disconnect(struct input_dev *dev) +static inline void input_led_disconnect(struct input_dev *dev) { } _ Patches currently in -mm which might be from blogic@xxxxxxxxxxx are input-route-kbd-leds-through-the-generic-leds-layer-fix.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html