diff options
author | Florian Westphal <fw@strlen.de> | 2017-03-29 18:17:31 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-30 21:05:34 +0300 |
commit | 282ccf6efb7c5d75b0283b66ed487957163ce8fe (patch) | |
tree | 0788e2b85bedeaf324c7470de8c4a73b75b160f2 /drivers/net/dsa | |
parent | eaf70ad14cbbb99d46b78b1307628a16a3f6075d (diff) | |
download | linux-282ccf6efb7c5d75b0283b66ed487957163ce8fe.tar.xz |
drivers: add explicit interrupt.h includes
These files all use functions declared in interrupt.h, but currently rely
on implicit inclusion of this file (via netns/xfrm.h).
That won't work anymore when the flow cache is removed so include that
header where needed.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx/global2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/global2.c b/drivers/net/dsa/mv88e6xxx/global2.c index 0b8601f8536e..132559d46b95 100644 --- a/drivers/net/dsa/mv88e6xxx/global2.c +++ b/drivers/net/dsa/mv88e6xxx/global2.c @@ -13,6 +13,7 @@ * (at your option) any later version. */ +#include <linux/interrupt.h> #include <linux/irqdomain.h> #include "mv88e6xxx.h" #include "global2.h" |