Prev: [P2020] "Processor 1 is stuck" (introduced by 8b27f0b61)
Next: [PATCH] signalfd: fill in ssi_int for posix timers and message queues
From: Randy Dunlap on 2 Jul 2010 19:50 From: Randy Dunlap <randy.dunlap(a)oracle.com> Several solo drivers need <linux/delay.h>, so add it to the private solo6010.h header file. drivers/staging/solo6x10/solo6010-core.c:191: error: implicit declaration of function 'mdelay' drivers/staging/solo6x10/solo6010-tw28.c:181: error: implicit declaration of function 'msleep_interruptible' drivers/staging/solo6x10/solo6010-gpio.c:78: error: implicit declaration of function 'udelay' drivers/staging/solo6x10/solo6010-v4l2-enc.c:254: error: implicit declaration of function 'mdelay' Signed-off-by: Randy Dunlap <randy.dunlap(a)oracle.com> --- drivers/staging/solo6x10/solo6010.h | 1 + 1 file changed, 1 insertion(+) --- linux-next-20100702.orig/drivers/staging/solo6x10/solo6010.h +++ linux-next-20100702/drivers/staging/solo6x10/solo6010.h @@ -26,6 +26,7 @@ #include <linux/semaphore.h> #include <linux/mutex.h> #include <linux/list.h> +#include <linux/delay.h> #include <linux/wait.h> #include <asm/io.h> #include <asm/atomic.h> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |