diff options
| author | Golan Ben Ami <golan.ben.ami@intel.com> | 2018-04-03 16:39:18 +0300 |
|---|---|---|
| committer | Luca Coelho <luciano.coelho@intel.com> | 2018-08-31 11:38:20 +0300 |
| commit | 7d2bcc22cd16dd3997df2c8417a2cd31b79c3bae (patch) | |
| tree | 8172b72ac8e34890d0f07e0e526a8dd7dc308848 | |
| parent | 86e177d80ff7b127138e69e03a3ba7a4c090f57b (diff) | |
| download | linux-7d2bcc22cd16dd3997df2c8417a2cd31b79c3bae.tar.gz linux-7d2bcc22cd16dd3997df2c8417a2cd31b79c3bae.zip | |
iwlwifi: add required include to iwl-fh.h
Some variables are used in iwl-fh.h, but their type's definition
isn't included. This may break compilation when using the file
without including the necessary dependencies first.
Add the required include to iwl-fh.h.
Signed-off-by: Golan Ben Ami <golan.ben.ami@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/iwl-fh.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-fh.h b/drivers/net/wireless/intel/iwlwifi/iwl-fh.h index df0e9ffff706..4f7254303853 100644 --- a/drivers/net/wireless/intel/iwlwifi/iwl-fh.h +++ b/drivers/net/wireless/intel/iwlwifi/iwl-fh.h @@ -68,6 +68,8 @@ #include <linux/types.h> #include <linux/bitfield.h> +#include "iwl-trans.h" + /****************************/ /* Flow Handler Definitions */ /****************************/ |
