diff mbox

[U-Boot] powerpc/85xx: Extend ethernet device tree stashing parameters for "fsl, etsec2"

Message ID 1295947357-12145-1-git-send-email-galak@kernel.crashing.org
State Accepted
Commit eea9a123449c34fa1631e7869aae94dbe3b61dbd
Delegated to: Kumar Gala
Headers show

Commit Message

Kumar Gala Jan. 25, 2011, 9:22 a.m. UTC
From: Pankaj Chauhan <pankaj.chauhan@freescale.com>

In a manner similar to passing ethernet stashing parameters into device
tree for "gianfar", extend the support to the "fsl,etsec2" as well.

Signed-off-by: Pankaj Chauhan <pankaj.chauhan@freescale.com>
Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 arch/powerpc/cpu/mpc85xx/fdt.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

Comments

Kumar Gala Feb. 1, 2011, 4:44 a.m. UTC | #1
On Jan 25, 2011, at 3:22 AM, Kumar Gala wrote:

> From: Pankaj Chauhan <pankaj.chauhan@freescale.com>
> 
> In a manner similar to passing ethernet stashing parameters into device
> tree for "gianfar", extend the support to the "fsl,etsec2" as well.
> 
> Signed-off-by: Pankaj Chauhan <pankaj.chauhan@freescale.com>
> Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> arch/powerpc/cpu/mpc85xx/fdt.c |    3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)

applied to 85xx next

- k
diff mbox

Patch

diff --git a/arch/powerpc/cpu/mpc85xx/fdt.c b/arch/powerpc/cpu/mpc85xx/fdt.c
index 00fa752..6ed0284 100644
--- a/arch/powerpc/cpu/mpc85xx/fdt.c
+++ b/arch/powerpc/cpu/mpc85xx/fdt.c
@@ -338,6 +338,9 @@  void fdt_add_enet_stashing(void *fdt)
 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1);
 
 	do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1);
+	do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1);
+	do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1);
+	do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1);
 }
 
 #if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME)