From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Fri, 06 Feb 2009 16:44:40 -0800 Subject: [U-Boot] PATCH: Fix MPC8260 with ethernet on SCC In-Reply-To: References: Message-ID: <498CD978.6010309@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de ksi at koi8.net wrote: > This fixes MPC8260 compilation with ethernet on SCC. Probably was a > typo or something... > > Signed-off-by: Sergey Kubushyn > --- > diff -purN u-boot.orig/cpu/mpc8260/cpu.c u-boot/cpu/mpc8260/cpu.c > --- u-boot.orig/cpu/mpc8260/cpu.c 2009-02-02 13:39:05.000000000 -0800 > +++ u-boot/cpu/mpc8260/cpu.c 2009-02-06 15:29:28.000000000 -0800 > @@ -327,7 +327,7 @@ int cpu_eth_init(bd_t *bis) > fec_initialize(bis); > #endif > #if defined(CONFIG_ETHER_ON_SCC) > - mpc82xx_scc_enet_initialize(bd); > + mpc82xx_scc_enet_initialize(bis); > #endif > return 0; > } > Nice catch. I'll apply it tonight. regards, Ben