The patch titled leds: fix pca9532 build when GPIOLIB is disabled has been added to the -mm tree. Its filename is drivers-leds-leds-pca9532c-add-gpio-capability-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 *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: leds: fix pca9532 build when GPIOLIB is disabled From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix build when GPIOLIB is not enabled: drivers/leds/leds-pca9532.c:39: error: field 'gpio' has incomplete type for: drivers-leds-leds-pca9532c-add-gpio-capability.patch Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Joachim Eastwood <manabian@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/leds/leds-pca9532.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/leds/leds-pca9532.c~drivers-leds-leds-pca9532c-add-gpio-capability-fix drivers/leds/leds-pca9532.c --- a/drivers/leds/leds-pca9532.c~drivers-leds-leds-pca9532c-add-gpio-capability-fix +++ a/drivers/leds/leds-pca9532.c @@ -36,7 +36,9 @@ struct pca9532_data { struct mutex update_lock; struct input_dev *idev; struct work_struct work; +#ifdef CONFIG_LEDS_PCA9532_GPIO struct gpio_chip gpio; +#endif u8 pwm[2]; u8 psc[2]; }; _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are linux-next.patch drivers-staging-olpc_dcon-olpc_dcon_xo_1c-needs-delayh.patch drivers-leds-leds-pca9532c-add-gpio-capability-fix.patch leds-route-kbd-leds-through-the-generic-leds-layer.patch mutex-subsystem-synchro-test-module.patch mutex-subsystem-synchro-test-module-fix.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