staging: brcm80211: make device initializer table for wme constant
For chip initialisation of the wme parameters a table is used, but it was not marked as constant. Reviewed-by: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
25d3f4bc66
commit
4c5af8e260
1 changed files with 2 additions and 2 deletions
|
@ -4297,7 +4297,7 @@ void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
|
|||
int i_ac;
|
||||
struct ieee80211_tx_queue_params txq_pars;
|
||||
struct ieee80211_tx_queue_params *params = &txq_pars;
|
||||
static struct edcf_acparam default_edcf_acparams[] = {
|
||||
static const struct edcf_acparam default_edcf_acparams[] = {
|
||||
{EDCF_AC_BE_ACI_STA, EDCF_AC_BE_ECW_STA,
|
||||
cpu_to_le16(EDCF_AC_BE_TXOP_STA)},
|
||||
{EDCF_AC_BK_ACI_STA, EDCF_AC_BK_ECW_STA,
|
||||
|
@ -4307,7 +4307,7 @@ void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
|
|||
{EDCF_AC_VO_ACI_STA, EDCF_AC_VO_ECW_STA,
|
||||
cpu_to_le16(EDCF_AC_VO_TXOP_STA)}
|
||||
}; /* ucode needs these parameters during its initialization */
|
||||
struct edcf_acparam *edcf_acp = &default_edcf_acparams[0];
|
||||
const struct edcf_acparam *edcf_acp = &default_edcf_acparams[0];
|
||||
|
||||
for (i_ac = 0; i_ac < AC_COUNT; i_ac++, edcf_acp++) {
|
||||
/* find out which ac this set of params applies to */
|
||||
|
|
Loading…
Add table
Reference in a new issue