powerpc: Fix CamelCase checkpatch warnings
85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates "WARNING: Avoid CamelCase". Convert variables name to normal naming convention and modify board, driver files with updated the new structure. Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com> Acked-by: York Sun <yorksun@freescale.com>
This commit is contained in:
committed by
York Sun
parent
5d97fe2a04
commit
997399fa42
@@ -65,8 +65,8 @@ local_bus_init(void)
|
||||
|
||||
get_sys_info(&sysinfo);
|
||||
|
||||
lbc_mhz = sysinfo.freqLocalBus / 1000000;
|
||||
clkdiv = sysinfo.freqSystemBus / sysinfo.freqLocalBus;
|
||||
lbc_mhz = sysinfo.freq_localbus / 1000000;
|
||||
clkdiv = sysinfo.freq_systembus / sysinfo.freq_localbus;
|
||||
|
||||
debug("LCRR=0x%x, CD=%d, MHz=%d\n", lcrr, clkdiv, lbc_mhz);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user