The firmware is exposing a new system features control command, define the necessary data structures etc. Rename "soc.h" to "system.h" since the SoC command is also in the system group and adding another file for just one more struct seemed like a waste of files. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Link: https://lore.kernel.org/r/iwlwifi.20211204174545.94a120687887.I79acffcf0793ea9e4ddec24b06420961bfb4fe94@changeid Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/*
|
|
* Copyright (C) 2012-2014, 2018, 2020 Intel Corporation
|
|
* Copyright (C) 2013-2015 Intel Mobile Communications GmbH
|
|
* Copyright (C) 2016-2017 Intel Deutschland GmbH
|
|
*/
|
|
#ifndef __fw_api_h__
|
|
#define __fw_api_h__
|
|
|
|
#include "fw/api/tdls.h"
|
|
#include "fw/api/mac-cfg.h"
|
|
#include "fw/api/offload.h"
|
|
#include "fw/api/context.h"
|
|
#include "fw/api/time-event.h"
|
|
#include "fw/api/datapath.h"
|
|
#include "fw/api/phy.h"
|
|
#include "fw/api/config.h"
|
|
#include "fw/api/system.h"
|
|
#include "fw/api/alive.h"
|
|
#include "fw/api/binding.h"
|
|
#include "fw/api/cmdhdr.h"
|
|
#include "fw/api/coex.h"
|
|
#include "fw/api/commands.h"
|
|
#include "fw/api/d3.h"
|
|
#include "fw/api/filter.h"
|
|
#include "fw/api/led.h"
|
|
#include "fw/api/mac.h"
|
|
#include "fw/api/nvm-reg.h"
|
|
#include "fw/api/phy-ctxt.h"
|
|
#include "fw/api/power.h"
|
|
#include "fw/api/rs.h"
|
|
#include "fw/api/rx.h"
|
|
#include "fw/api/scan.h"
|
|
#include "fw/api/sf.h"
|
|
#include "fw/api/sta.h"
|
|
#include "fw/api/stats.h"
|
|
#include "fw/api/location.h"
|
|
#include "fw/api/tx.h"
|
|
#include "fw/api/rfi.h"
|
|
|
|
#endif /* __fw_api_h__ */
|