Re: [U-Boot] [PATCH] Remove extra fdt_fixup_ethernet() call

2017-04-28 Thread Chen-Yu Tsai
On Mon, Apr 3, 2017 at 3:03 PM, Joakim Tjernlund wrote: > On Fri, 2017-03-31 at 22:21 -0600, Simon Glass wrote: >> Hi Joakim, >> >> On 23 March 2017 at 11:02, Joakim Tjernlund >> wrote: >> > ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it >> > in image_setup_libfdt() is both redunda

Re: [U-Boot] [PATCH] Remove extra fdt_fixup_ethernet() call

2017-04-03 Thread Joakim Tjernlund
On Fri, 2017-03-31 at 22:21 -0600, Simon Glass wrote: > Hi Joakim, > > On 23 March 2017 at 11:02, Joakim Tjernlund > wrote: > > ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it > > in image_setup_libfdt() is both redundant and breaks any modifications > > done by ft_board_setup(). Re

Re: [U-Boot] [PATCH] Remove extra fdt_fixup_ethernet() call

2017-03-31 Thread Simon Glass
Hi Joakim, On 23 March 2017 at 11:02, Joakim Tjernlund wrote: > ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it > in image_setup_libfdt() is both redundant and breaks any modifications > done by ft_board_setup(). Restore the old behavior by removing > the call in image_setup_libfdt(

Re: [U-Boot] [PATCH] Remove extra fdt_fixup_ethernet() call

2017-03-28 Thread Joakim Tjernlund
On Thu, 2017-03-23 at 18:02 +0100, Joakim Tjernlund wrote: > ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it > in image_setup_libfdt() is both redundant and breaks any modifications > done by ft_board_setup(). Restore the old behavior by removing > the call in image_setup_libfdt() >

[U-Boot] [PATCH] Remove extra fdt_fixup_ethernet() call

2017-03-23 Thread Joakim Tjernlund
ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it in image_setup_libfdt() is both redundant and breaks any modifications done by ft_board_setup(). Restore the old behavior by removing the call in image_setup_libfdt() Signed-off-by: Joakim Tjernlund --- common/image-fdt.c | 1 - 1 fil