bcm53xx: use backported Asus RT-AC87U DT patch
[openwrt.git] / target / linux / bcm53xx / patches-3.18 / 710-b53-add-hacky-CPU-port-fix-for-Netgear-R8000.patch
1 From ec2ae8fc837772afd7a89f98c8a1ec71e2ab322b 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 fix for Netgear R8000
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 | 4 ++++
12  1 file changed, 4 insertions(+)
13
14 diff --git a/drivers/net/phy/b53/b53_common.c b/drivers/net/phy/b53/b53_common.c
15 index 2b05d5d..ba16107 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,9 @@ static int b53_switch_init(struct b53_device *dev)
27                         sw_dev->cpu_port = 5;
28         }
29  
30 +       if (of_machine_is_compatible("netgear,r8000"))
31 +               sw_dev->cpu_port = 8;
32 +
33         /* cpu port is always last */
34         sw_dev->ports = sw_dev->cpu_port + 1;
35         dev->enabled_ports |= BIT(sw_dev->cpu_port);
36 -- 
37 1.8.4.5
38