diff options
author | Florian Westphal <fw@strlen.de> | 2017-03-29 17:17:31 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-30 11:05:34 -0700 |
commit | 282ccf6efb7c5d75b0283b66ed487957163ce8fe (patch) | |
tree | 0788e2b85bedeaf324c7470de8c4a73b75b160f2 /net/mac802154 | |
parent | eaf70ad14cbbb99d46b78b1307628a16a3f6075d (diff) |
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 'net/mac802154')
-rw-r--r-- | net/mac802154/ieee802154_i.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac802154/ieee802154_i.h b/net/mac802154/ieee802154_i.h index 56ccffa3f2bf..62141dcec2d6 100644 --- a/net/mac802154/ieee802154_i.h +++ b/net/mac802154/ieee802154_i.h @@ -19,6 +19,7 @@ #ifndef __IEEE802154_I_H #define __IEEE802154_I_H +#include <linux/interrupt.h> #include <linux/mutex.h> #include <linux/hrtimer.h> #include <net/cfg802154.h> |