diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2011-06-08 15:49:33 +1000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-08 00:15:34 -0700 |
commit | ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd (patch) | |
tree | 245d203712b88144da7a8170b09e75337a8e5515 | |
parent | cb2bad862e66eafbc97c26011ab7ab6cedc82810 (diff) | |
download | linux-3.10-ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd.tar.gz linux-3.10-ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd.tar.bz2 linux-3.10-ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd.zip |
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 <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ll_temac_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <linux/io.h> #include <linux/ip.h> #include <linux/slab.h> +#include <linux/interrupt.h> #include "ll_temac.h" |