cosmetic fix: properly indent source

SVN-Revision: 8425
This commit is contained in:
Nicolas Thill 2007-08-18 17:02:26 +00:00
parent c60d8f1216
commit 3b4fa7de59

View file

@ -264,13 +264,11 @@ static void __init tnetd7300_init_clocks(void)
struct tnetd7300_clocks *clocks = (struct tnetd7300_clocks *)ioremap_nocache(AR7_REGS_POWER + 0x20, sizeof(struct tnetd7300_clocks));
ar7_bus_clock = tnetd7300_get_clock(BUS_PLL_SOURCE_SHIFT,
&clocks->bus, bootcr,
ar7_afe_clock);
&clocks->bus, bootcr, ar7_afe_clock);
if (*bootcr & BOOT_PLL_ASYNC_MODE) {
ar7_cpu_clock = tnetd7300_get_clock(CPU_PLL_SOURCE_SHIFT,
&clocks->cpu,
bootcr, ar7_afe_clock);
&clocks->cpu, bootcr, ar7_afe_clock);
} else {
ar7_cpu_clock = ar7_bus_clock;
}
@ -366,7 +364,7 @@ static void __init tnetd7200_init_clocks(void)
int dsp_base, dsp_mul, dsp_prediv, dsp_postdiv;
int usb_base, usb_mul, usb_prediv, usb_postdiv;
/*
/*
Log from Fritz!Box 7170 Annex B:
CPU revision is: 00018448
@ -385,7 +383,7 @@ static void __init tnetd7200_init_clocks(void)
DSL didn't work if you didn't set the postdiv 2:1 postdiv2 combination, driver hung on startup.
Haven't tested this on a synchronous board, neither do i know what to do with ar7_dsp_clock
*/
*/
cpu_base = tnetd7200_get_clock_base(TNETD7200_CLOCK_ID_CPU, bootcr);
dsp_base = tnetd7200_get_clock_base(TNETD7200_CLOCK_ID_DSP, bootcr);
@ -445,7 +443,7 @@ static void __init tnetd7200_init_clocks(void)
usb_prediv, usb_postdiv, -1, usb_mul,
TNETD7200_DEF_USB_CLK);
#warning FIXME: ????! Hrmm
#warning FIXME: ????! Hrmm
ar7_dsp_clock = ar7_cpu_clock;
iounmap(clocks);