]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ath5k: update dependencies
authorSergey Ryazanov <ryazanov.s.a@gmail.com>
Tue, 28 Oct 2014 23:18:49 +0000 (03:18 +0400)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 24 Nov 2014 06:45:29 +0000 (07:45 +0100)
- Use config symbol defined in the driver instead of arch specific one for
  conditional compilation.
- Rename the ATHEROS_AR231X config symbol to ATH25.
- Fix include (ar231x_platform.h -> ath25_platform.h).
- Some of AR231x SoCs (e.g. AR2315) have PCI bus support, so remove !PCI
  dependency, which block AHB support build.

Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Acked-by: John W. Linville <linville@tuxdriver.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Cc: Nick Kossifidis <mickflemm@gmail.com>
Cc: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
Cc: linux-wireless@vger.kernel.org
Cc: ath5k-devel@lists.ath5k.org
Cc: Linux MIPS <linux-mips@linux-mips.org>
Patchwork: https://patchwork.linux-mips.org/patch/8248/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
drivers/net/wireless/ath/ath5k/Kconfig
drivers/net/wireless/ath/ath5k/ahb.c
drivers/net/wireless/ath/ath5k/ath5k.h
drivers/net/wireless/ath/ath5k/base.c
drivers/net/wireless/ath/ath5k/led.c

index c9f81a388f1572cb6a9f233809731f61c4ffe209..2399a39217625e55c9a52551263e3b9058d144c5 100644 (file)
@@ -1,13 +1,13 @@
 config ATH5K
        tristate "Atheros 5xxx wireless cards support"
-       depends on (PCI || ATHEROS_AR231X) && MAC80211
+       depends on (PCI || ATH25) && MAC80211
        select ATH_COMMON
        select MAC80211_LEDS
        select LEDS_CLASS
        select NEW_LEDS
        select AVERAGE
-       select ATH5K_AHB if (ATHEROS_AR231X && !PCI)
-       select ATH5K_PCI if (!ATHEROS_AR231X && PCI)
+       select ATH5K_AHB if ATH25
+       select ATH5K_PCI if !ATH25
        ---help---
          This module adds support for wireless adapters based on
          Atheros 5xxx chipset.
@@ -54,14 +54,14 @@ config ATH5K_TRACER
 
 config ATH5K_AHB
        bool "Atheros 5xxx AHB bus support"
-       depends on (ATHEROS_AR231X && !PCI)
+       depends on ATH25
        ---help---
          This adds support for WiSoC type chipsets of the 5xxx Atheros
          family.
 
 config ATH5K_PCI
        bool "Atheros 5xxx PCI bus support"
-       depends on (!ATHEROS_AR231X && PCI)
+       depends on (!ATH25 && PCI)
        ---help---
          This adds support for PCI type chipsets of the 5xxx Atheros
          family.
index 79bffe165caba6e1f963b9fa81deed4844cb42d1..8f387cf673407c483c7d01ae30d68cd57693d7a3 100644 (file)
@@ -20,7 +20,7 @@
 #include <linux/platform_device.h>
 #include <linux/etherdevice.h>
 #include <linux/export.h>
-#include <ar231x_platform.h>
+#include <ath25_platform.h>
 #include "ath5k.h"
 #include "debug.h"
 #include "base.h"
index 85316bb3f8c66a51baffad61a5b306337f4ec04f..1ed7a88aeea9cd7ba7890fd308a1952888cfd28c 100644 (file)
@@ -1647,7 +1647,7 @@ static inline struct ath_regulatory *ath5k_hw_regulatory(struct ath5k_hw *ah)
        return &(ath5k_hw_common(ah)->regulatory);
 }
 
-#ifdef CONFIG_ATHEROS_AR231X
+#ifdef CONFIG_ATH5K_AHB
 #define AR5K_AR2315_PCI_BASE   ((void __iomem *)0xb0100000)
 
 static inline void __iomem *ath5k_ahb_reg(struct ath5k_hw *ah, u16 reg)
index 59a87247aac4ca5fe43eb55a5a3b60ae2f10adc2..bc9cb356fa697fd67efcb186f7e28e890bbe3287 100644 (file)
@@ -99,7 +99,7 @@ static int ath5k_reset(struct ath5k_hw *ah, struct ieee80211_channel *chan,
 
 /* Known SREVs */
 static const struct ath5k_srev_name srev_names[] = {
-#ifdef CONFIG_ATHEROS_AR231X
+#ifdef CONFIG_ATH5K_AHB
        { "5312",       AR5K_VERSION_MAC,       AR5K_SREV_AR5312_R2 },
        { "5312",       AR5K_VERSION_MAC,       AR5K_SREV_AR5312_R7 },
        { "2313",       AR5K_VERSION_MAC,       AR5K_SREV_AR2313_R8 },
@@ -142,7 +142,7 @@ static const struct ath5k_srev_name srev_names[] = {
        { "5413",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5413 },
        { "5424",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5424 },
        { "5133",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_5133 },
-#ifdef CONFIG_ATHEROS_AR231X
+#ifdef CONFIG_ATH5K_AHB
        { "2316",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2316 },
        { "2317",       AR5K_VERSION_RAD,       AR5K_SREV_RAD_2317 },
 #endif
index 2062d1190556b11983234b35c9a76e7cff893367..ca4b7ccd697fd81b06112b6c5b2e06a83a7f3f27 100644 (file)
@@ -163,7 +163,7 @@ int ath5k_init_leds(struct ath5k_hw *ah)
 {
        int ret = 0;
        struct ieee80211_hw *hw = ah->hw;
-#ifndef CONFIG_ATHEROS_AR231X
+#ifndef CONFIG_ATH5K_AHB
        struct pci_dev *pdev = ah->pdev;
 #endif
        char name[ATH5K_LED_MAX_NAME_LEN + 1];
@@ -172,7 +172,7 @@ int ath5k_init_leds(struct ath5k_hw *ah)
        if (!ah->pdev)
                return 0;
 
-#ifdef CONFIG_ATHEROS_AR231X
+#ifdef CONFIG_ATH5K_AHB
        match = NULL;
 #else
        match = pci_match_id(&ath5k_led_devices[0], pdev);