All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
To: ath9k-devel@lists.ath9k.org, devicetree@vger.kernel.org,
	linux-wireless@vger.kernel.org, ath9k-devel@qca.qualcomm.com
Cc: mcgrof@do-not-panic.com, mark.rutland@arm.com,
	robh+dt@kernel.org, kvalo@codeaurora.org,
	chunkeey@googlemail.com, arend.vanspriel@broadcom.com,
	julian.calaby@gmail.com, bjorn@mork.no, linux@rempel-privat.de,
	nbd@nbd.name,
	Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Subject: [PATCH v7 3/3] ath9k: parse the device configuration from an OF node
Date: Sun,  2 Oct 2016 23:47:43 +0200	[thread overview]
Message-ID: <20161002214743.2263-4-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20161002214743.2263-1-martin.blumenstingl@googlemail.com>

This allows setting the MAC address and specifying that the firmware
will be requested from userspace (because there might not be a hardware
EEPROM connected to the chip) for ath9k based PCI devices using
the device tree.

There is some out-of-tree code to "convert devicetree to
ath9k_platform_data" (for example in OpenWrt and LEDE) which becomes
obsolete with this patch.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
---
 drivers/net/wireless/ath/ath9k/init.c | 42 +++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
index cfa3fe8..b7c8ff9 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -20,6 +20,8 @@
 #include <linux/slab.h>
 #include <linux/ath9k_platform.h>
 #include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_net.h>
 #include <linux/relay.h>
 #include <net/ieee80211_radiotap.h>
 
@@ -555,6 +557,42 @@ static int ath9k_init_platform(struct ath_softc *sc)
 	return 0;
 }
 
+static int ath9k_of_init(struct ath_softc *sc)
+{
+	struct device_node *np = sc->dev->of_node;
+	struct ath_hw *ah = sc->sc_ah;
+	struct ath_common *common = ath9k_hw_common(ah);
+	enum ath_bus_type bus_type = common->bus_ops->ath_bus_type;
+	const char *mac;
+	char eeprom_name[100];
+	int ret;
+
+	if (!of_device_is_available(np))
+		return 0;
+
+	ath_dbg(common, CONFIG, "parsing configuration from OF node\n");
+
+	if (of_property_read_bool(np, "qca,no-eeprom")) {
+		/* ath9k-eeprom-<bus>-<id>.bin */
+		scnprintf(eeprom_name, sizeof(eeprom_name),
+			  "ath9k-eeprom-%s-%s.bin",
+			  ath_bus_type_to_string(bus_type), dev_name(ah->dev));
+
+		ret = ath9k_eeprom_request(sc, eeprom_name);
+		if (ret)
+			return ret;
+	}
+
+	mac = of_get_mac_address(np);
+	if (mac)
+		ether_addr_copy(common->macaddr, mac);
+
+	ah->ah_flags &= ~AH_USE_EEPROM;
+	ah->ah_flags |= AH_NO_EEP_SWAP;
+
+	return 0;
+}
+
 static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 			    const struct ath_bus_ops *bus_ops)
 {
@@ -611,6 +649,10 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 	if (ret)
 		return ret;
 
+	ret = ath9k_of_init(sc);
+	if (ret)
+		return ret;
+
 	if (ath9k_led_active_high != -1)
 		ah->config.led_active_high = ath9k_led_active_high == 1;
 
-- 
2.10.0

WARNING: multiple messages have this Message-ID (diff)
From: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
To: ath9k-devel-xDcbHBWguxHbcTqmT+pZeQ@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	ath9k-devel-A+ZNKFmMK5xy9aJCnZT0Uw@public.gmane.org
Cc: mcgrof-3uybbJdB1yH774rrrx3eTA@public.gmane.org,
	mark.rutland-5wv7dgnIgG8@public.gmane.org,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	kvalo-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
	chunkeey-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org,
	arend.vanspriel-dY08KVG/lbpWk0Htik3J/w@public.gmane.org,
	julian.calaby-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	bjorn-yOkvZcmFvRU@public.gmane.org,
	linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org,
	nbd-Vt+b4OUoWG0@public.gmane.org,
	Martin Blumenstingl
	<martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
Subject: [PATCH v7 3/3] ath9k: parse the device configuration from an OF node
Date: Sun,  2 Oct 2016 23:47:43 +0200	[thread overview]
Message-ID: <20161002214743.2263-4-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20161002214743.2263-1-martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>

This allows setting the MAC address and specifying that the firmware
will be requested from userspace (because there might not be a hardware
EEPROM connected to the chip) for ath9k based PCI devices using
the device tree.

There is some out-of-tree code to "convert devicetree to
ath9k_platform_data" (for example in OpenWrt and LEDE) which becomes
obsolete with this patch.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
---
 drivers/net/wireless/ath/ath9k/init.c | 42 +++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
index cfa3fe8..b7c8ff9 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -20,6 +20,8 @@
 #include <linux/slab.h>
 #include <linux/ath9k_platform.h>
 #include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_net.h>
 #include <linux/relay.h>
 #include <net/ieee80211_radiotap.h>
 
@@ -555,6 +557,42 @@ static int ath9k_init_platform(struct ath_softc *sc)
 	return 0;
 }
 
+static int ath9k_of_init(struct ath_softc *sc)
+{
+	struct device_node *np = sc->dev->of_node;
+	struct ath_hw *ah = sc->sc_ah;
+	struct ath_common *common = ath9k_hw_common(ah);
+	enum ath_bus_type bus_type = common->bus_ops->ath_bus_type;
+	const char *mac;
+	char eeprom_name[100];
+	int ret;
+
+	if (!of_device_is_available(np))
+		return 0;
+
+	ath_dbg(common, CONFIG, "parsing configuration from OF node\n");
+
+	if (of_property_read_bool(np, "qca,no-eeprom")) {
+		/* ath9k-eeprom-<bus>-<id>.bin */
+		scnprintf(eeprom_name, sizeof(eeprom_name),
+			  "ath9k-eeprom-%s-%s.bin",
+			  ath_bus_type_to_string(bus_type), dev_name(ah->dev));
+
+		ret = ath9k_eeprom_request(sc, eeprom_name);
+		if (ret)
+			return ret;
+	}
+
+	mac = of_get_mac_address(np);
+	if (mac)
+		ether_addr_copy(common->macaddr, mac);
+
+	ah->ah_flags &= ~AH_USE_EEPROM;
+	ah->ah_flags |= AH_NO_EEP_SWAP;
+
+	return 0;
+}
+
 static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 			    const struct ath_bus_ops *bus_ops)
 {
@@ -611,6 +649,10 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 	if (ret)
 		return ret;
 
+	ret = ath9k_of_init(sc);
+	if (ret)
+		return ret;
+
 	if (ath9k_led_active_high != -1)
 		ah->config.led_active_high = ath9k_led_active_high == 1;
 
-- 
2.10.0

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] [PATCH v7 3/3] ath9k: parse the device configuration from an OF node
Date: Sun,  2 Oct 2016 23:47:43 +0200	[thread overview]
Message-ID: <20161002214743.2263-4-martin.blumenstingl@googlemail.com> (raw)
In-Reply-To: <20161002214743.2263-1-martin.blumenstingl@googlemail.com>

This allows setting the MAC address and specifying that the firmware
will be requested from userspace (because there might not be a hardware
EEPROM connected to the chip) for ath9k based PCI devices using
the device tree.

There is some out-of-tree code to "convert devicetree to
ath9k_platform_data" (for example in OpenWrt and LEDE) which becomes
obsolete with this patch.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
---
 drivers/net/wireless/ath/ath9k/init.c | 42 +++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c
index cfa3fe8..b7c8ff9 100644
--- a/drivers/net/wireless/ath/ath9k/init.c
+++ b/drivers/net/wireless/ath/ath9k/init.c
@@ -20,6 +20,8 @@
 #include <linux/slab.h>
 #include <linux/ath9k_platform.h>
 #include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_net.h>
 #include <linux/relay.h>
 #include <net/ieee80211_radiotap.h>
 
@@ -555,6 +557,42 @@ static int ath9k_init_platform(struct ath_softc *sc)
 	return 0;
 }
 
+static int ath9k_of_init(struct ath_softc *sc)
+{
+	struct device_node *np = sc->dev->of_node;
+	struct ath_hw *ah = sc->sc_ah;
+	struct ath_common *common = ath9k_hw_common(ah);
+	enum ath_bus_type bus_type = common->bus_ops->ath_bus_type;
+	const char *mac;
+	char eeprom_name[100];
+	int ret;
+
+	if (!of_device_is_available(np))
+		return 0;
+
+	ath_dbg(common, CONFIG, "parsing configuration from OF node\n");
+
+	if (of_property_read_bool(np, "qca,no-eeprom")) {
+		/* ath9k-eeprom-<bus>-<id>.bin */
+		scnprintf(eeprom_name, sizeof(eeprom_name),
+			  "ath9k-eeprom-%s-%s.bin",
+			  ath_bus_type_to_string(bus_type), dev_name(ah->dev));
+
+		ret = ath9k_eeprom_request(sc, eeprom_name);
+		if (ret)
+			return ret;
+	}
+
+	mac = of_get_mac_address(np);
+	if (mac)
+		ether_addr_copy(common->macaddr, mac);
+
+	ah->ah_flags &= ~AH_USE_EEPROM;
+	ah->ah_flags |= AH_NO_EEP_SWAP;
+
+	return 0;
+}
+
 static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 			    const struct ath_bus_ops *bus_ops)
 {
@@ -611,6 +649,10 @@ static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
 	if (ret)
 		return ret;
 
+	ret = ath9k_of_init(sc);
+	if (ret)
+		return ret;
+
 	if (ath9k_led_active_high != -1)
 		ah->config.led_active_high = ath9k_led_active_high == 1;
 
-- 
2.10.0

  parent reply	other threads:[~2016-10-02 21:47 UTC|newest]

Thread overview: 161+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-24 12:34 [RFC v3] ath9k: add devicetree support to ath9k Martin Blumenstingl
2016-06-24 12:34 ` [ath9k-devel] " Martin Blumenstingl
2016-06-24 12:34 ` [PATCH RFC v3 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-06-24 12:34   ` [ath9k-devel] " Martin Blumenstingl
2016-06-27  0:20   ` Julian Calaby
2016-06-27  0:20     ` [ath9k-devel] " Julian Calaby
2016-06-27  9:49   ` Kalle Valo
2016-06-27  9:49     ` [ath9k-devel] " Kalle Valo
2016-06-24 12:34 ` [PATCH v3 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-06-24 12:34   ` [ath9k-devel] " Martin Blumenstingl
2016-06-27 10:26   ` Felix Fietkau
2016-06-27 10:26     ` [ath9k-devel] " Felix Fietkau
2016-06-29 22:37     ` Martin Blumenstingl
2016-06-29 22:37       ` [ath9k-devel] " Martin Blumenstingl
2016-06-24 12:34 ` [PATCH RFC v3 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-06-24 12:34   ` [ath9k-devel] " Martin Blumenstingl
2016-06-25 12:01   ` Christian Lamparter
2016-06-25 12:01     ` [ath9k-devel] " Christian Lamparter
2016-06-25 15:08     ` Martin Blumenstingl
2016-06-25 15:08       ` [ath9k-devel] " Martin Blumenstingl
2016-06-25 19:26       ` Christian Lamparter
2016-06-25 19:26         ` [ath9k-devel] " Christian Lamparter
2016-06-26 23:38         ` Martin Blumenstingl
2016-06-26 23:38           ` [ath9k-devel] " Martin Blumenstingl
2016-07-07  0:47           ` Luis R. Rodriguez
2016-07-07  1:03             ` [ath9k-devel] " Luis R. Rodriguez
2016-07-09 23:28 ` [PATCH v4 0/3] add devicetree support to ath9k Martin Blumenstingl
2016-07-09 23:28   ` [ath9k-devel] " Martin Blumenstingl
2016-07-09 23:28   ` Martin Blumenstingl
2016-07-09 23:28   ` [PATCH v4 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-07-09 23:28     ` [ath9k-devel] " Martin Blumenstingl
2016-07-09 23:28     ` Martin Blumenstingl
2016-07-10 20:52     ` Arnd Bergmann
2016-07-10 20:52       ` [ath9k-devel] " Arnd Bergmann
2016-07-10 20:52       ` Arnd Bergmann
2016-07-10 20:54       ` Martin Blumenstingl
2016-07-10 20:54         ` [ath9k-devel] " Martin Blumenstingl
2016-07-10 20:54         ` Martin Blumenstingl
2016-07-10 22:01         ` Arnd Bergmann
2016-07-10 22:01           ` [ath9k-devel] " Arnd Bergmann
2016-07-10 22:01           ` Arnd Bergmann
2016-07-11 21:21           ` Martin Blumenstingl
2016-07-11 21:21             ` [ath9k-devel] " Martin Blumenstingl
2016-07-11 21:21             ` Martin Blumenstingl
2016-07-14 12:33             ` Arnd Bergmann
2016-07-14 12:33               ` [ath9k-devel] " Arnd Bergmann
2016-07-14 12:33               ` Arnd Bergmann
2016-07-13  7:02     ` Kalle Valo
2016-07-13  7:02       ` [ath9k-devel] " Kalle Valo
2016-07-13  7:02       ` Kalle Valo
2016-07-13  7:47       ` Arnd Bergmann
2016-07-13  7:47         ` [ath9k-devel] " Arnd Bergmann
2016-07-13  7:47         ` Arnd Bergmann
2016-07-09 23:28   ` [PATCH v4 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-07-09 23:28     ` [ath9k-devel] " Martin Blumenstingl
2016-07-09 23:28     ` Martin Blumenstingl
2016-07-09 23:28   ` [PATCH v4 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-07-09 23:28     ` [ath9k-devel] " Martin Blumenstingl
2016-07-09 23:28     ` Martin Blumenstingl
2016-07-10  0:19     ` Bjørn Mork
2016-07-10  0:32       ` [ath9k-devel] " Bjørn Mork
2016-07-10  0:19       ` Bjørn Mork
2016-07-10  9:28       ` Oleksij Rempel
2016-07-10  9:28         ` [ath9k-devel] " Oleksij Rempel
2016-07-10  9:28         ` Oleksij Rempel
2016-07-10 20:56       ` Martin Blumenstingl
2016-07-10 20:56         ` [ath9k-devel] " Martin Blumenstingl
2016-07-10 20:56         ` Martin Blumenstingl
2016-08-21 14:31   ` [PATCH v5 0/3] add devicetree support to ath9k Martin Blumenstingl
2016-08-21 14:31     ` [ath9k-devel] " Martin Blumenstingl
2016-08-21 14:31     ` Martin Blumenstingl
2016-08-21 14:31     ` [PATCH v5 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-08-21 14:31       ` [ath9k-devel] " Martin Blumenstingl
2016-08-21 14:31       ` Martin Blumenstingl
2016-08-22  9:08       ` Arnd Bergmann
2016-08-22  9:08         ` [ath9k-devel] " Arnd Bergmann
2016-08-22  9:08         ` Arnd Bergmann
2016-08-28 20:51         ` Martin Blumenstingl
2016-08-28 20:51           ` [ath9k-devel] " Martin Blumenstingl
2016-08-28 20:51           ` Martin Blumenstingl
2016-08-29 12:12           ` Arnd Bergmann
2016-08-29 12:12             ` [ath9k-devel] " Arnd Bergmann
2016-08-29 12:12             ` Arnd Bergmann
2016-08-21 14:31     ` [PATCH v5 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-08-21 14:31       ` [ath9k-devel] " Martin Blumenstingl
2016-08-21 14:31       ` Martin Blumenstingl
2016-08-21 14:31     ` [PATCH v5 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-08-21 14:31       ` [ath9k-devel] " Martin Blumenstingl
2016-08-21 14:31       ` Martin Blumenstingl
2016-09-06 21:46     ` [PATCH v6 0/3] add devicetree support to ath9k Martin Blumenstingl
2016-09-06 21:46       ` [ath9k-devel] " Martin Blumenstingl
2016-09-06 21:46       ` Martin Blumenstingl
2016-09-06 21:46       ` [PATCH v6 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-09-06 21:46         ` [ath9k-devel] " Martin Blumenstingl
2016-09-06 21:46         ` Martin Blumenstingl
2016-09-09  7:48         ` Oleksij Rempel
2016-09-09  7:48           ` [ath9k-devel] " Oleksij Rempel
2016-09-09  7:48           ` Oleksij Rempel
2016-09-09 20:57           ` Martin Blumenstingl
2016-09-09 20:57             ` [ath9k-devel] " Martin Blumenstingl
2016-09-09 20:57             ` Martin Blumenstingl
2016-09-13  7:28             ` Oleksij Rempel
2016-09-13  7:28               ` [ath9k-devel] " Oleksij Rempel
2016-09-13  7:28               ` Oleksij Rempel
2016-09-16 12:45             ` Rob Herring
2016-09-16 12:45               ` [ath9k-devel] " Rob Herring
2016-09-16 12:45               ` Rob Herring
2016-09-18 21:51               ` Martin Blumenstingl
2016-09-18 21:51                 ` [ath9k-devel] " Martin Blumenstingl
2016-09-18 21:51                 ` Martin Blumenstingl
2016-09-16 12:37         ` Rob Herring
2016-09-16 12:55           ` [ath9k-devel] " Rob Herring
2016-09-16 12:37           ` Rob Herring
2016-09-06 21:46       ` [PATCH v6 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-09-06 21:46         ` [ath9k-devel] " Martin Blumenstingl
2016-09-06 21:46         ` Martin Blumenstingl
2016-09-06 21:46       ` [PATCH v6 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-09-06 21:46         ` [ath9k-devel] " Martin Blumenstingl
2016-09-06 21:46         ` Martin Blumenstingl
2016-10-02 21:47       ` [PATCH v7 0/3] add devicetree support to ath9k Martin Blumenstingl
2016-10-02 21:47         ` [ath9k-devel] " Martin Blumenstingl
2016-10-02 21:47         ` Martin Blumenstingl
2016-10-02 21:47         ` [PATCH v7 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-10-02 21:47           ` [ath9k-devel] " Martin Blumenstingl
2016-10-02 21:47           ` Martin Blumenstingl
2016-10-07 12:17           ` [v7, " Kalle Valo
2016-10-07 12:17           ` Kalle Valo
2016-10-07 12:17             ` [ath9k-devel] " Kalle Valo
2016-10-07 12:17           ` Kalle Valo
2016-10-07 12:17             ` Kalle Valo
2016-10-08 22:50           ` [PATCH v7 " Rob Herring
2016-10-09  1:28           ` Rob Herring
2016-10-09  1:29             ` [ath9k-devel] " Rob Herring
2016-10-09  1:28             ` Rob Herring
2016-10-09  9:54             ` Martin Blumenstingl
2016-10-09  9:54               ` [ath9k-devel] " Martin Blumenstingl
2016-10-09  9:54               ` Martin Blumenstingl
2016-10-02 21:47         ` [PATCH v7 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-10-02 21:47           ` [ath9k-devel] " Martin Blumenstingl
2016-10-02 21:47           ` Martin Blumenstingl
2016-10-02 21:47         ` Martin Blumenstingl [this message]
2016-10-02 21:47           ` [ath9k-devel] [PATCH v7 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-10-02 21:47           ` Martin Blumenstingl
2016-10-16 20:59         ` [PATCH v8 0/3] add devicetree support to ath9k Martin Blumenstingl
2016-10-16 20:59           ` [ath9k-devel] " Martin Blumenstingl
2016-10-16 20:59           ` Martin Blumenstingl
2016-10-16 20:59           ` [PATCH v8 1/3] Documentation: dt: net: add ath9k wireless device binding Martin Blumenstingl
2016-10-16 20:59             ` [ath9k-devel] " Martin Blumenstingl
2016-10-16 20:59             ` Martin Blumenstingl
2016-10-18 15:31             ` Rob Herring
2016-10-18 15:31               ` [ath9k-devel] " Rob Herring
2016-10-18 15:31               ` Rob Herring
2016-11-15 14:56             ` [v8, " Kalle Valo
2016-11-15 14:56               ` [ath9k-devel] " Kalle Valo
2016-11-15 14:56               ` Kalle Valo
2016-10-16 20:59           ` [PATCH v8 2/3] ath9k: add a helper to get the string representation of ath_bus_type Martin Blumenstingl
2016-10-16 20:59             ` [ath9k-devel] " Martin Blumenstingl
2016-10-16 20:59             ` Martin Blumenstingl
2016-10-16 20:59           ` [PATCH v8 3/3] ath9k: parse the device configuration from an OF node Martin Blumenstingl
2016-10-16 20:59             ` [ath9k-devel] " Martin Blumenstingl
2016-10-16 20:59             ` Martin Blumenstingl

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161002214743.2263-4-martin.blumenstingl@googlemail.com \
    --to=martin.blumenstingl@googlemail.com \
    --cc=arend.vanspriel@broadcom.com \
    --cc=ath9k-devel@lists.ath9k.org \
    --cc=ath9k-devel@qca.qualcomm.com \
    --cc=bjorn@mork.no \
    --cc=chunkeey@googlemail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=julian.calaby@gmail.com \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linux@rempel-privat.de \
    --cc=mark.rutland@arm.com \
    --cc=mcgrof@do-not-panic.com \
    --cc=nbd@nbd.name \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.