From ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Wed, 8 Jun 2011 15:49:33 +1000 Subject: [PATCH] net: add needed interrupt.h Fixes these errors after the removal of interrupt.h from netdevice.h: drivers/net/ll_temac_main.c: In function 'temac_open': drivers/net/ll_temac_main.c:859:2: error: implicit declaration of function 'request_irq' drivers/net/ll_temac_main.c:870:2: error: implicit declaration of function 'free_irq' drivers/net/ll_temac_main.c: In function 'temac_poll_controller': drivers/net/ll_temac_main.c:903:2: error: implicit declaration of function 'disable_irq' drivers/net/ll_temac_main.c:909:2: error: implicit declaration of function 'enable_irq' Signed-off-by: Stephen Rothwell Signed-off-by: David S. Miller --- drivers/net/ll_temac_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ll_temac_main.c b/drivers/net/ll_temac_main.c index b7948ccfcf7..e7b8afec73a 100644 --- a/drivers/net/ll_temac_main.c +++ b/drivers/net/ll_temac_main.c @@ -48,6 +48,7 @@ #include #include #include +#include #include "ll_temac.h" -- 2.46.0