mac80211: make it work with 3.18.12+
[openwrt/openwrt.git] / target / linux / bcm53xx / patches-3.18 / 710-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch
1 From 4abdde3ad6bc0b3b157c4bf6ec0bf139d11d07e8 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
3 Date: Wed, 13 May 2015 14:13:28 +0200
4 Subject: [PATCH] b53: add hacky CPU port fixes for devices not using port 5
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
10 ---
11 drivers/net/phy/b53/b53_common.c | 6 ++++++
12 1 file changed, 6 insertions(+)
13
14 diff --git a/drivers/net/phy/b53/b53_common.c b/drivers/net/phy/b53/b53_common.c
15 index 2b05d5d..fd3b39c 100644
16 --- a/drivers/net/phy/b53/b53_common.c
17 +++ b/drivers/net/phy/b53/b53_common.c
18 @@ -25,6 +25,7 @@
19 #include <linux/module.h>
20 #include <linux/switch.h>
21 #include <linux/platform_data/b53.h>
22 +#include <linux/of.h>
23
24 #include "b53_regs.h"
25 #include "b53_priv.h"
26 @@ -1313,6 +1314,11 @@ static int b53_switch_init(struct b53_device *dev)
27 sw_dev->cpu_port = 5;
28 }
29
30 + if (of_machine_is_compatible("asus,rt-ac87u"))
31 + sw_dev->cpu_port = 7;
32 + else if (of_machine_is_compatible("netgear,r8000"))
33 + sw_dev->cpu_port = 8;
34 +
35 /* cpu port is always last */
36 sw_dev->ports = sw_dev->cpu_port + 1;
37 dev->enabled_ports |= BIT(sw_dev->cpu_port);
38 --
39 1.8.4.5
40