Commit dfcb4c3a authored by Johannes Berg's avatar Johannes Berg

iwlwifi: mvm: adjust firmware D3 configuration API

The D3 firmware API changed to include a new field, adjust
the driver to it to avoid getting an NMI when configuring.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 60191d99
...@@ -75,13 +75,15 @@ enum iwl_d3_wakeup_flags { ...@@ -75,13 +75,15 @@ enum iwl_d3_wakeup_flags {
* struct iwl_d3_manager_config - D3 manager configuration command * struct iwl_d3_manager_config - D3 manager configuration command
* @min_sleep_time: minimum sleep time (in usec) * @min_sleep_time: minimum sleep time (in usec)
* @wakeup_flags: wakeup flags, see &enum iwl_d3_wakeup_flags * @wakeup_flags: wakeup flags, see &enum iwl_d3_wakeup_flags
* @wakeup_host_timer: force wakeup after this many seconds
* *
* The structure is used for the D3_CONFIG_CMD command. * The structure is used for the D3_CONFIG_CMD command.
*/ */
struct iwl_d3_manager_config { struct iwl_d3_manager_config {
__le32 min_sleep_time; __le32 min_sleep_time;
__le32 wakeup_flags; __le32 wakeup_flags;
} __packed; /* D3_MANAGER_CONFIG_CMD_S_VER_3 */ __le32 wakeup_host_timer;
} __packed; /* D3_MANAGER_CONFIG_CMD_S_VER_4 */
/* TODO: OFFLOADS_QUERY_API_S_VER_1 */ /* TODO: OFFLOADS_QUERY_API_S_VER_1 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment