init.c (958e1be848c92006ee4b95190d3725daf3a70034) | init.c (c1d32d3038ff4d366b837cedb95aeb1801730f2c) |
---|---|
1 2/* 3 * Copyright (c) 2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc. 5 * 6 * Permission to use, copy, modify, and/or distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. --- 1562 unchanged lines hidden (view full) --- 1571 { ATH6KL_FW_CAPABILITY_CUSTOM_MAC_ADDR, "custom-mac-addr" }, 1572 { ATH6KL_FW_CAPABILITY_TX_ERR_NOTIFY, "tx-err-notify" }, 1573 { ATH6KL_FW_CAPABILITY_REGDOMAIN, "regdomain" }, 1574 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_V2, "sched-scan-v2" }, 1575 { ATH6KL_FW_CAPABILITY_HEART_BEAT_POLL, "hb-poll" }, 1576 { ATH6KL_FW_CAPABILITY_64BIT_RATES, "64bit-rates" }, 1577 { ATH6KL_FW_CAPABILITY_AP_INACTIVITY_MINS, "ap-inactivity-mins" }, 1578 { ATH6KL_FW_CAPABILITY_MAP_LP_ENDPOINT, "map-lp-endpoint" }, | 1 2/* 3 * Copyright (c) 2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc. 5 * 6 * Permission to use, copy, modify, and/or distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. --- 1562 unchanged lines hidden (view full) --- 1571 { ATH6KL_FW_CAPABILITY_CUSTOM_MAC_ADDR, "custom-mac-addr" }, 1572 { ATH6KL_FW_CAPABILITY_TX_ERR_NOTIFY, "tx-err-notify" }, 1573 { ATH6KL_FW_CAPABILITY_REGDOMAIN, "regdomain" }, 1574 { ATH6KL_FW_CAPABILITY_SCHED_SCAN_V2, "sched-scan-v2" }, 1575 { ATH6KL_FW_CAPABILITY_HEART_BEAT_POLL, "hb-poll" }, 1576 { ATH6KL_FW_CAPABILITY_64BIT_RATES, "64bit-rates" }, 1577 { ATH6KL_FW_CAPABILITY_AP_INACTIVITY_MINS, "ap-inactivity-mins" }, 1578 { ATH6KL_FW_CAPABILITY_MAP_LP_ENDPOINT, "map-lp-endpoint" }, |
1579 { ATH6KL_FW_CAPABILITY_RATETABLE_MCS15, "ratetable-mcs15" }, |
|
1579}; 1580 1581static const char *ath6kl_init_get_fw_capa_name(unsigned int id) 1582{ 1583 int i; 1584 1585 for (i = 0; i < ARRAY_SIZE(fw_capa_map); i++) { 1586 if (fw_capa_map[i].id == id) --- 289 unchanged lines hidden --- | 1580}; 1581 1582static const char *ath6kl_init_get_fw_capa_name(unsigned int id) 1583{ 1584 int i; 1585 1586 for (i = 0; i < ARRAY_SIZE(fw_capa_map); i++) { 1587 if (fw_capa_map[i].id == id) --- 289 unchanged lines hidden --- |