summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/patches-4.3
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-01 18:57:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2016-01-01 18:57:29 +0000
commit46519964ffdd8d917271496c9bd54a1d884fe5f2 (patch)
tree0364a4a6a1236ef89c22d5bfd76087afec8f8c32 /target/linux/ramips/patches-4.3
parent22693a9086e57c758cc9ef73499c3e4b274b7d01 (diff)
downloadmaster-31e0f0ae-46519964ffdd8d917271496c9bd54a1d884fe5f2.tar.gz
master-31e0f0ae-46519964ffdd8d917271496c9bd54a1d884fe5f2.tar.bz2
master-31e0f0ae-46519964ffdd8d917271496c9bd54a1d884fe5f2.zip
kernel: fold of_get_mac_address_mtd into of_get_mac_address
This makes it easier to keep drivers in sync with upstream Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48026
Diffstat (limited to 'target/linux/ramips/patches-4.3')
-rw-r--r--target/linux/ramips/patches-4.3/0600-net-mediatek-add-of_get_mac_address_mtd-support.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/target/linux/ramips/patches-4.3/0600-net-mediatek-add-of_get_mac_address_mtd-support.patch b/target/linux/ramips/patches-4.3/0600-net-mediatek-add-of_get_mac_address_mtd-support.patch
deleted file mode 100644
index 38ef4187af..0000000000
--- a/target/linux/ramips/patches-4.3/0600-net-mediatek-add-of_get_mac_address_mtd-support.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From fce0d89383e0a2a694723989da608df1a464bae4 Mon Sep 17 00:00:00 2001
-From: John Crispin <blogic@openwrt.org>
-Date: Sun, 13 Dec 2015 17:45:19 +0100
-Subject: [PATCH 1/2] net: mediatek: add of_get_mac_address_mtd() support
-
-Signed-off-by: John Crispin <blogic@openwrt.org>
----
- drivers/net/ethernet/mediatek/mtk_eth_soc.c | 5 +----
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
-index fb435fa..9999768 100644
---- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
-+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
-@@ -1273,7 +1273,6 @@ static int __init fe_init(struct net_device *dev)
- {
- struct fe_priv *priv = netdev_priv(dev);
- struct device_node *port;
-- const char *mac_addr;
- int err;
-
- priv->soc->reset_fe();
-@@ -1281,9 +1280,7 @@ static int __init fe_init(struct net_device *dev)
- if (priv->soc->switch_init)
- priv->soc->switch_init(priv);
-
-- mac_addr = of_get_mac_address(priv->device->of_node);
-- if (mac_addr)
-- ether_addr_copy(dev->dev_addr, mac_addr);
-+ of_get_mac_address_mtd(priv->device->of_node, dev->dev_addr);
-
- /*If the mac address is invalid, use random mac address */
- if (!is_valid_ether_addr(dev->dev_addr)) {
---
-1.7.10.4
-