aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-12-10 16:11:19 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-12-13 15:33:34 -0500
commite5f0a276213ffb080d0613d6c7fc1240ef5af67c (patch)
treea4f8525c9423c4931a0e5522f9e28fe457aac36e
parent775ab52142b02237a54184238e922251c59a2b5c (diff)
ath9k: make two mci related functions static
Signed-off-by: Felix Fietkau <nbd@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath9k/mci.c8
-rw-r--r--drivers/net/wireless/ath/ath9k/mci.h4
2 files changed, 4 insertions, 8 deletions
diff --git a/drivers/net/wireless/ath/ath9k/mci.c b/drivers/net/wireless/ath/ath9k/mci.c
index d6780405d6f5..691bf47906e2 100644
--- a/drivers/net/wireless/ath/ath9k/mci.c
+++ b/drivers/net/wireless/ath/ath9k/mci.c
@@ -234,8 +234,8 @@ static void ath_mci_cal_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
234 } 234 }
235} 235}
236 236
237void ath_mci_process_profile(struct ath_softc *sc, 237static void ath_mci_process_profile(struct ath_softc *sc,
238 struct ath_mci_profile_info *info) 238 struct ath_mci_profile_info *info)
239{ 239{
240 struct ath_common *common = ath9k_hw_common(sc->sc_ah); 240 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
241 struct ath_btcoex *btcoex = &sc->btcoex; 241 struct ath_btcoex *btcoex = &sc->btcoex;
@@ -261,8 +261,8 @@ void ath_mci_process_profile(struct ath_softc *sc,
261 ath_mci_update_scheme(sc); 261 ath_mci_update_scheme(sc);
262} 262}
263 263
264void ath_mci_process_status(struct ath_softc *sc, 264static void ath_mci_process_status(struct ath_softc *sc,
265 struct ath_mci_profile_status *status) 265 struct ath_mci_profile_status *status)
266{ 266{
267 struct ath_common *common = ath9k_hw_common(sc->sc_ah); 267 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
268 struct ath_btcoex *btcoex = &sc->btcoex; 268 struct ath_btcoex *btcoex = &sc->btcoex;
diff --git a/drivers/net/wireless/ath/ath9k/mci.h b/drivers/net/wireless/ath/ath9k/mci.h
index b71bdeda7c78..29e3e51d078f 100644
--- a/drivers/net/wireless/ath/ath9k/mci.h
+++ b/drivers/net/wireless/ath/ath9k/mci.h
@@ -128,10 +128,6 @@ struct ath_mci_coex {
128}; 128};
129 129
130void ath_mci_flush_profile(struct ath_mci_profile *mci); 130void ath_mci_flush_profile(struct ath_mci_profile *mci);
131void ath_mci_process_profile(struct ath_softc *sc,
132 struct ath_mci_profile_info *info);
133void ath_mci_process_status(struct ath_softc *sc,
134 struct ath_mci_profile_status *status);
135int ath_mci_setup(struct ath_softc *sc); 131int ath_mci_setup(struct ath_softc *sc);
136void ath_mci_cleanup(struct ath_softc *sc); 132void ath_mci_cleanup(struct ath_softc *sc);
137void ath_mci_intr(struct ath_softc *sc); 133void ath_mci_intr(struct ath_softc *sc);