mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
wifi: iwlwifi: dvm: fix some kernel-doc issues
Fix a couple of kernel-doc warnings in the old DVM code. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20250611222325.b33528d06431.I948261d6610c47f09133fa73f5e5ea9b9848fd21@changeid
This commit is contained in:
parent
9748ad82a9
commit
51512b654f
|
|
@ -397,6 +397,8 @@ static inline void iwl_dvm_set_pmi(struct iwl_priv *priv, bool state)
|
|||
* returns a (newly allocated) struct containing all the
|
||||
* relevant values for driver use. The struct must be freed
|
||||
* later with iwl_free_nvm_data().
|
||||
*
|
||||
* Return: the parsed NVM data
|
||||
*/
|
||||
struct iwl_nvm_data *
|
||||
iwl_parse_eeprom_data(struct iwl_trans *trans, const struct iwl_rf_cfg *cfg,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
||||
/*
|
||||
* Copyright (C) 2005-2014, 2023-2024 Intel Corporation
|
||||
* Copyright (C) 2005-2014, 2023-2025 Intel Corporation
|
||||
*/
|
||||
/*
|
||||
* Please use this file (commands.h) only for uCode API definitions.
|
||||
|
|
@ -614,7 +614,7 @@ struct iwl_rxon_time_cmd {
|
|||
* REPLY_CHANNEL_SWITCH = 0x72 (command, has simple generic response)
|
||||
*/
|
||||
/**
|
||||
* struct iwl5000_channel_switch_cmd
|
||||
* struct iwl5000_channel_switch_cmd - channel switch command (5000 series)
|
||||
* @band: 0- 5.2GHz, 1- 2.4GHz
|
||||
* @expect_beacon: 0- resume transmits after channel switch
|
||||
* 1- wait for beacon to resume transmits
|
||||
|
|
@ -635,7 +635,7 @@ struct iwl5000_channel_switch_cmd {
|
|||
} __packed;
|
||||
|
||||
/**
|
||||
* struct iwl6000_channel_switch_cmd
|
||||
* struct iwl6000_channel_switch_cmd - channel switch command (6000 series)
|
||||
* @band: 0- 5.2GHz, 1- 2.4GHz
|
||||
* @expect_beacon: 0- resume transmits after channel switch
|
||||
* 1- wait for beacon to resume transmits
|
||||
|
|
@ -791,7 +791,7 @@ struct iwl_keyinfo {
|
|||
} __packed;
|
||||
|
||||
/**
|
||||
* struct sta_id_modify
|
||||
* struct sta_id_modify - station modify command
|
||||
* @addr: station's MAC address
|
||||
* @reserved1: reserved for alignment
|
||||
* @sta_id: index of station in uCode's station table
|
||||
|
|
@ -2992,7 +2992,7 @@ struct iwl_missed_beacon_notif {
|
|||
#define SENSITIVITY_CMD_CONTROL_WORK_TABLE cpu_to_le16(1)
|
||||
|
||||
/**
|
||||
* struct iwl_sensitivity_cmd
|
||||
* struct iwl_sensitivity_cmd - sensitivity configuration command
|
||||
* @control: (1) updates working table, (0) updates default table
|
||||
* @table: energy threshold values, use HD_* as index into table
|
||||
*
|
||||
|
|
@ -3848,7 +3848,7 @@ struct iwlagn_wowlan_status {
|
|||
#define IWL_MIN_SLOT_TIME 20
|
||||
|
||||
/**
|
||||
* struct iwl_wipan_slot
|
||||
* struct iwl_wipan_slot - WiPAN slot configuration
|
||||
* @width: Time in TU
|
||||
* @type:
|
||||
* 0 - BSS
|
||||
|
|
@ -3868,7 +3868,7 @@ struct iwl_wipan_slot {
|
|||
#define IWL_WIPAN_PARAMS_FLG_FULL_SLOTTED_MODE BIT(5)
|
||||
|
||||
/**
|
||||
* struct iwl_wipan_params_cmd
|
||||
* struct iwl_wipan_params_cmd - WiPAN parameters
|
||||
* @flags:
|
||||
* bit0: reserved
|
||||
* bit1: CP leave channel with CTS
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ struct iwl_qos_info {
|
|||
};
|
||||
|
||||
/**
|
||||
* enum iwl_agg_state
|
||||
* enum iwl_agg_state - aggregation state
|
||||
*
|
||||
* The state machine of the BA agreement establishment / tear down.
|
||||
* These states relate to a specific RA / TID.
|
||||
|
|
@ -519,7 +519,7 @@ enum iwl_scan_type {
|
|||
};
|
||||
|
||||
/**
|
||||
* struct iwl_hw_params
|
||||
* struct iwl_hw_params - HW parameters
|
||||
*
|
||||
* Holds the module parameters
|
||||
*
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ static void iwl1000_nic_config(struct iwl_priv *priv)
|
|||
* iwl_beacon_time_mask_low - mask of lower 32 bit of beacon time
|
||||
* @priv: pointer to iwl_priv data structure
|
||||
* @tsf_bits: number of bits need to shift for masking)
|
||||
* Return: low 32 bits of beacon time mask
|
||||
*/
|
||||
static inline u32 iwl_beacon_time_mask_low(struct iwl_priv *priv,
|
||||
u16 tsf_bits)
|
||||
|
|
@ -66,6 +67,7 @@ static inline u32 iwl_beacon_time_mask_low(struct iwl_priv *priv,
|
|||
* iwl_beacon_time_mask_high - mask of higher 32 bit of beacon time
|
||||
* @priv: pointer to iwl_priv data structure
|
||||
* @tsf_bits: number of bits need to shift for masking)
|
||||
* Return: high 32 bits of beacon time mask
|
||||
*/
|
||||
static inline u32 iwl_beacon_time_mask_high(struct iwl_priv *priv,
|
||||
u16 tsf_bits)
|
||||
|
|
|
|||
|
|
@ -232,6 +232,8 @@ static void iwlagn_tx_cmd_build_hwcrypto(struct iwl_priv *priv,
|
|||
* that may be %NULL, for example during TX or key setup. In
|
||||
* that case, we need to use the broadcast station, so this
|
||||
* inline wraps that pattern.
|
||||
*
|
||||
* Return: station ID for mac80211 station (or broadcast if %NULL)
|
||||
*/
|
||||
static int iwl_sta_id_or_broadcast(struct iwl_rxon_context *context,
|
||||
struct ieee80211_sta *sta)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user