Re: [U-Boot] [PATCH v3 5/9] ARM: stm32: use clock setup function defined in clock.c

2016-12-01 Thread vikas
Hi, On 11/24/2016 11:10 AM, Michael Kurz wrote: > Use the clock setup function defined in clock.c instead of setting the > clock bits directly in the drivers. > Remove register definitions of RCC in rcc.h as these are already > defined in the struct in stm32.h > > Signed-off-by: Michael Kurz Re

Re: [U-Boot] [PATCH v3 5/9] ARM: stm32: use clock setup function defined in clock.c

2016-11-29 Thread Joe Hershberger
On Thu, Nov 24, 2016 at 1:10 PM, Michael Kurz wrote: > Use the clock setup function defined in clock.c instead of setting the > clock bits directly in the drivers. > Remove register definitions of RCC in rcc.h as these are already > defined in the struct in stm32.h > > Signed-off-by: Michael Kurz

[U-Boot] [PATCH v3 5/9] ARM: stm32: use clock setup function defined in clock.c

2016-11-24 Thread Michael Kurz
Use the clock setup function defined in clock.c instead of setting the clock bits directly in the drivers. Remove register definitions of RCC in rcc.h as these are already defined in the struct in stm32.h Signed-off-by: Michael Kurz --- Changes in v3: - Split clock setup changes of from cleanup