From: Jeff Mahoney <[email protected]> The olpc dcon xo1 driver uses udelay() without including <linux/delay.h>.
This patch adds it. Signed-off-by: Jeff Mahoney <[email protected]> Signed-off-by: Randy Dunlap <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- drivers/staging/olpc_dcon/olpc_dcon_xo_1.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/staging/olpc_dcon/olpc_dcon_xo_1.c b/drivers/staging/olpc_dcon/olpc_dcon_xo_1.c index b5d21f6..22c04ea 100644 --- a/drivers/staging/olpc_dcon/olpc_dcon_xo_1.c +++ b/drivers/staging/olpc_dcon/olpc_dcon_xo_1.c @@ -12,6 +12,7 @@ */ #include <linux/cs5535.h> #include <linux/gpio.h> +#include <linux/delay.h> #include <asm/olpc.h> #include "olpc_dcon.h" -- 1.7.4.2 _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
