linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/23] ath9k|ath9k_htc: move dups to common-beacon
@ 2014-03-01 20:15 Oleksij Rempel
  2014-03-01 20:15 ` [PATCH 01/23] ath9k: move struct ath_beacon_config to common Oleksij Rempel
                   ` (23 more replies)
  0 siblings, 24 replies; 33+ messages in thread
From: Oleksij Rempel @ 2014-03-01 20:15 UTC (permalink / raw)
  To: linux-wireless, sujith, linville; +Cc: Oleksij Rempel

Next patch set. It removes only easy duplicats of beacon code. Other parts of
need deeper rework to make it compatible with ath9k.

Oleksij Rempel (23):
  ath9k: move struct ath_beacon_config to common
  ath9k_htc: use common ath_beacon_config
  ath9k_htc: move beaconq to struct htc_beacon
  ath9k_htc: use ath_beacon_conf.enable_beacon
  ath9k: move sc_flags to ath_common
  ath9k_htc: use common->op_flags
  ath9k_htc: add ATH_OP_PRIM_STA_VIF
  ath9k: remove unused bc_tstamp
  ath9k_htc: sync beacon slot code with ath9k
  ath9k: remove unused beacon_qi
  ath9k|ath9k_htc: move IEEE80211_MS_TO_TU to common
  ath9k-common: add nexttbtt and intval to ath_beacon_config
  ath9k: move ath9k_beacon_config_sta to common-beacon
  ath9k_htc: use ath9k_cmn_beacon_config_sta
  ath9k: move ath9k_beacon_config_adhoc to common
  ath9k_htc: add ath9k_htc_beacon_init (but not use it)
  ath9k_htc: use ath9k_htc_beacon_init in ath9k_htc_beacon_config_ap
  ath9k_htc: use ath9k_htc_beacon_init in ath9k_htc_beacon_config_adhoc
  ath9k_htc: use ath9k_cmn_beacon_config_adhoc
  ath9k: move ath9k_beacon_config_ap common
  ath9k: remove unused ath9k_get_next_tbtt
  ath9k_htc: use ath9k_cmn_beacon_config_ap
  ath9k_htc: move DEFAULT_SWBA_RESPONSE check to ath9k_htc_beacon_init

 drivers/net/wireless/ath/ath.h                  |  10 +
 drivers/net/wireless/ath/ath9k/Makefile         |   3 +-
 drivers/net/wireless/ath/ath9k/ahb.c            |   7 +-
 drivers/net/wireless/ath/ath9k/ath9k.h          |  22 ---
 drivers/net/wireless/ath/ath9k/beacon.c         | 165 ++--------------
 drivers/net/wireless/ath/ath9k/common-beacon.c  | 180 +++++++++++++++++
 drivers/net/wireless/ath/ath9k/common-beacon.h  |  26 +++
 drivers/net/wireless/ath/ath9k/common.h         |  14 ++
 drivers/net/wireless/ath/ath9k/debug.c          |   2 +-
 drivers/net/wireless/ath/ath9k/htc.h            |  25 +--
 drivers/net/wireless/ath/ath9k/htc_drv_beacon.c | 252 ++++++------------------
 drivers/net/wireless/ath/ath9k/htc_drv_init.c   |  10 +-
 drivers/net/wireless/ath/ath9k/htc_drv_main.c   |  53 +++--
 drivers/net/wireless/ath/ath9k/htc_drv_txrx.c   |   3 +-
 drivers/net/wireless/ath/ath9k/link.c           |  16 +-
 drivers/net/wireless/ath/ath9k/main.c           |  45 +++--
 drivers/net/wireless/ath/ath9k/mci.c            |   2 +-
 drivers/net/wireless/ath/ath9k/pci.c            |   8 +-
 drivers/net/wireless/ath/ath9k/xmit.c           |   9 +-
 19 files changed, 413 insertions(+), 439 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/common-beacon.c
 create mode 100644 drivers/net/wireless/ath/ath9k/common-beacon.h

-- 
1.9.0


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2014-03-15  7:51 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-01 20:15 [PATCH 00/23] ath9k|ath9k_htc: move dups to common-beacon Oleksij Rempel
2014-03-01 20:15 ` [PATCH 01/23] ath9k: move struct ath_beacon_config to common Oleksij Rempel
2014-03-01 20:15 ` [PATCH 02/23] ath9k_htc: use common ath_beacon_config Oleksij Rempel
2014-03-01 20:15 ` [PATCH 03/23] ath9k_htc: move beaconq to struct htc_beacon Oleksij Rempel
2014-03-01 20:15 ` [PATCH 04/23] ath9k_htc: use ath_beacon_conf.enable_beacon Oleksij Rempel
2014-03-01 20:15 ` [PATCH 05/23] ath9k: move sc_flags to ath_common Oleksij Rempel
2014-03-01 20:15 ` [PATCH 06/23] ath9k_htc: use common->op_flags Oleksij Rempel
2014-03-01 20:15 ` [PATCH 07/23] ath9k_htc: add ATH_OP_PRIM_STA_VIF Oleksij Rempel
2014-03-01 20:15 ` [PATCH 08/23] ath9k: remove unused bc_tstamp Oleksij Rempel
2014-03-01 20:15 ` [PATCH 09/23] ath9k_htc: sync beacon slot code with ath9k Oleksij Rempel
2014-03-01 20:15 ` [PATCH 10/23] ath9k: remove unused beacon_qi Oleksij Rempel
2014-03-01 20:15 ` [PATCH 11/23] ath9k|ath9k_htc: move IEEE80211_MS_TO_TU to common Oleksij Rempel
2014-03-01 20:15 ` [PATCH 12/23] ath9k-common: add nexttbtt and intval to ath_beacon_config Oleksij Rempel
2014-03-01 20:15 ` [PATCH 13/23] ath9k: move ath9k_beacon_config_sta to common-beacon Oleksij Rempel
2014-03-01 20:15 ` [PATCH 14/23] ath9k_htc: use ath9k_cmn_beacon_config_sta Oleksij Rempel
2014-03-01 20:15 ` [PATCH 15/23] ath9k: move ath9k_beacon_config_adhoc to common Oleksij Rempel
2014-03-01 20:15 ` [PATCH 16/23] ath9k_htc: add ath9k_htc_beacon_init (but not use it) Oleksij Rempel
2014-03-01 20:16 ` [PATCH 17/23] ath9k_htc: use ath9k_htc_beacon_init in ath9k_htc_beacon_config_ap Oleksij Rempel
2014-03-01 20:16 ` [PATCH 18/23] ath9k_htc: use ath9k_htc_beacon_init in ath9k_htc_beacon_config_adhoc Oleksij Rempel
2014-03-01 20:16 ` [PATCH 19/23] ath9k_htc: use ath9k_cmn_beacon_config_adhoc Oleksij Rempel
2014-03-01 20:16 ` [PATCH 20/23] ath9k: move ath9k_beacon_config_ap common Oleksij Rempel
2014-03-01 20:16 ` [PATCH 21/23] ath9k: remove unused ath9k_get_next_tbtt Oleksij Rempel
2014-03-01 20:16 ` [PATCH 22/23] ath9k_htc: use ath9k_cmn_beacon_config_ap Oleksij Rempel
2014-03-01 20:16 ` [PATCH 23/23] ath9k_htc: move DEFAULT_SWBA_RESPONSE check to ath9k_htc_beacon_init Oleksij Rempel
2014-03-02  2:14 ` [PATCH 00/23] ath9k|ath9k_htc: move dups to common-beacon Sujith Manoharan
2014-03-02  7:27   ` Oleksij Rempel
2014-03-02  7:50     ` Sujith Manoharan
2014-03-06 18:42       ` John W. Linville
2014-03-07  9:55         ` Oleksij Rempel
2014-03-07 10:18           ` Sujith Manoharan
2014-03-10 15:08             ` Oleksij Rempel
2014-03-14 19:22               ` John W. Linville
2014-03-15  7:51                 ` Oleksij Rempel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).