diff options
author | Florian Westphal <fw@strlen.de> | 2017-07-17 13:57:18 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-07-18 11:13:41 -0700 |
commit | 0ab10314747364e621ab95b528c2bd874ff3f528 (patch) | |
tree | 0a7032e622dd577eab9ef48e94e128c67ddaf194 /drivers/net/arcnet | |
parent | 6ddb4fdfaccb5b712621721c255c0dd018d816b3 (diff) | |
download | blackbird-op-linux-0ab10314747364e621ab95b528c2bd874ff3f528.tar.gz blackbird-op-linux-0ab10314747364e621ab95b528c2bd874ff3f528.zip |
drivers: net: add missing interrupt.h include
these drivers use tasklets or irq apis, but don't include interrupt.h.
Once flow cache is removed the implicit interrupt.h inclusion goes away
which will break the build.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/arcnet')
-rw-r--r-- | drivers/net/arcnet/arcdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/arcnet/arcdevice.h b/drivers/net/arcnet/arcdevice.h index cbb4f8566bbe..d09b2b46ab63 100644 --- a/drivers/net/arcnet/arcdevice.h +++ b/drivers/net/arcnet/arcdevice.h @@ -20,7 +20,7 @@ #include <linux/if_arcnet.h> #ifdef __KERNEL__ -#include <linux/irqreturn.h> +#include <linux/interrupt.h> /* * RECON_THRESHOLD is the maximum number of RECON messages to receive |