Add missing headers for drivers/gpiolib/devres.c. Signed-off-by: Alexandre Courbot <[email protected]> --- drivers/gpio/devres.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/drivers/gpio/devres.c b/drivers/gpio/devres.c index fceebdc..307464f 100644 --- a/drivers/gpio/devres.c +++ b/drivers/gpio/devres.c @@ -15,7 +15,9 @@ */ #include <linux/module.h> +#include <linux/err.h> #include <linux/gpio.h> +#include <linux/gpio/consumer.h> #include <linux/device.h> #include <linux/gfp.h> -- 1.8.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

