diff options
| author | Stephen Rothwell <[email protected]> | 2011-06-08 05:49:33 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2011-06-08 07:15:34 +0000 |
| commit | ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd (patch) | |
| tree | 245d203712b88144da7a8170b09e75337a8e5515 | |
| parent | Merge branch 'can/at91-sam9x5' of git://git.pengutronix.de/git/mkl/linux-2.6 (diff) | |
| download | kernel-ffbc03bc75b39c7bd412e7cc6d2185c11b0ffedd.tar.gz kernel-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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -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 b7948ccfcf7d..e7b8afec73a1 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" |
