bcm53xx: use proper CPU port in b53 for Netgear R8500
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 48571
This commit is contained in:
parent
ddc8437f08
commit
12ec144892
|
@ -21,7 +21,7 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
|
||||||
|
|
||||||
#include "b53_regs.h"
|
#include "b53_regs.h"
|
||||||
#include "b53_priv.h"
|
#include "b53_priv.h"
|
||||||
@@ -1313,6 +1314,18 @@ static int b53_switch_init(struct b53_de
|
@@ -1313,6 +1314,20 @@ static int b53_switch_init(struct b53_de
|
||||||
sw_dev->cpu_port = 5;
|
sw_dev->cpu_port = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@ Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
|
||||||
+ sw_dev->cpu_port = 7;
|
+ sw_dev->cpu_port = 7;
|
||||||
+ else if (of_machine_is_compatible("netgear,r8000"))
|
+ else if (of_machine_is_compatible("netgear,r8000"))
|
||||||
+ sw_dev->cpu_port = 8;
|
+ sw_dev->cpu_port = 8;
|
||||||
|
+ else if (of_machine_is_compatible("netgear,r8500"))
|
||||||
|
+ sw_dev->cpu_port = 8;
|
||||||
+
|
+
|
||||||
+ /*
|
+ /*
|
||||||
+ * Workaround for devices using port 8 (connected to the 3rd iface).
|
+ * Workaround for devices using port 8 (connected to the 3rd iface).
|
||||||
|
|
Loading…
Reference in New Issue