Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d962f9b1 authored by Johannes Berg's avatar Johannes Berg Committed by Luca Coelho
Browse files

iwlwifi: create new subdirectory for FW interaction



There's a lot of mvm code that really should be more generic
and part of the iwlwifi module. Start by making a place to
keep such code - in the new "fw" subdirectory - and already
move the firmware related header files there.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent b4f48985
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
#include <linux/slab.h>
#include <linux/mutex.h>

#include "iwl-fw.h"
#include "fw/img.h"
#include "iwl-eeprom-parse.h"
#include "iwl-csr.h"
#include "iwl-debug.h"
+5 −5
Original line number Diff line number Diff line
@@ -64,12 +64,12 @@
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *****************************************************************************/

#ifndef __iwl_fw_h__
#define __iwl_fw_h__
#ifndef __iwl_fw_img_h__
#define __iwl_fw_img_h__
#include <linux/types.h>

#include "iwl-fw-file.h"
#include "iwl-fw-error-dump.h"
#include "file.h"
#include "error-dump.h"

/**
 * enum iwl_ucode_type
@@ -339,4 +339,4 @@ iwl_get_ucode_image(const struct iwl_fw *fw, enum iwl_ucode_type ucode_type)
	return &fw->img[ucode_type];
}

#endif  /* __iwl_fw_h__ */
#endif  /* __iwl_fw_img_h__ */
Loading