summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k
diff options
context:
space:
mode:
authorFelix Fietkau2011-04-13 21:56:43 +0200
committerJohn W. Linville2011-04-14 21:35:08 +0200
commit0cb9e06b6359bfa82f46c38a0b43e72d90b84081 (patch)
tree38a9c85bf15141681f7f3d3fd743464a88a96b7e /drivers/net/wireless/ath/ath9k
parentath5k: disable 5 GHz support if a 2.4 GHz radio is detected (diff)
downloadkernel-qcow2-linux-0cb9e06b6359bfa82f46c38a0b43e72d90b84081.tar.gz
kernel-qcow2-linux-0cb9e06b6359bfa82f46c38a0b43e72d90b84081.tar.xz
kernel-qcow2-linux-0cb9e06b6359bfa82f46c38a0b43e72d90b84081.zip
ath: unshare struct ath_bus_ops between ath5k and ath9k
This struct is not used in any common code, and moving it out of the ath header makes it easier to add more driver specific ops. Signed-off-by: Felix Fietkau <nbd@openwrt.org> Tested-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h
index a778b66f4438..073bc9e1c792 100644
--- a/drivers/net/wireless/ath/ath9k/hw.h
+++ b/drivers/net/wireless/ath/ath9k/hw.h
@@ -846,6 +846,14 @@ struct ath_hw {
u32 ent_mode;
};
+struct ath_bus_ops {
+ enum ath_bus_type ath_bus_type;
+ void (*read_cachesize)(struct ath_common *common, int *csz);
+ bool (*eeprom_read)(struct ath_common *common, u32 off, u16 *data);
+ void (*bt_coex_prep)(struct ath_common *common);
+ void (*extn_synch_en)(struct ath_common *common);
+};
+
static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah)
{
return &ah->common;