The patch titled gpio: fix build on CONFIG_GPIO_SYSFS=n has been removed from the -mm tree. Its filename was gpio-fix-build-on-config_gpio_sysfs=n.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gpio: fix build on CONFIG_GPIO_SYSFS=n From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> If CONFIG_GENERIC_GPIO=y && CONFIG_GPIO_SYSFS=n, gpio_export() in asm-generic/gpio.h refers -ENOSYS and causes build error. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Acked-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-generic/gpio.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/asm-generic/gpio.h~gpio-fix-build-on-config_gpio_sysfs=n include/asm-generic/gpio.h --- a/include/asm-generic/gpio.h~gpio-fix-build-on-config_gpio_sysfs=n +++ a/include/asm-generic/gpio.h @@ -2,6 +2,7 @@ #define _ASM_GENERIC_GPIO_H #include <linux/types.h> +#include <linux/errno.h> #ifdef CONFIG_GPIOLIB _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are initrd-cast-initrd_start-to-void.patch linux-next.patch mtdpart-handle-remaining-checkpatch-findings.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