ColdFire: Fix compilation error
The error was caused by the change for strmhz() in cpu.c. A few of them were one extra close parenthesis. Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
This commit is contained in:
parent
536e7dac16
commit
1b27084422
|
@ -65,12 +65,12 @@ int checkcpu(void)
|
||||||
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
||||||
ver);
|
ver);
|
||||||
printf(" CPU CLK %s MHz BUS CLK %s MHz FLB CLK %s MHz\n",
|
printf(" CPU CLK %s MHz BUS CLK %s MHz FLB CLK %s MHz\n",
|
||||||
strmhz(buf1, gd->cpu_clk)),
|
strmhz(buf1, gd->cpu_clk),
|
||||||
strmhz(buf2, gd->bus_clk)),
|
strmhz(buf2, gd->bus_clk),
|
||||||
strmhz(buf3, gd->flb_clk)));
|
strmhz(buf3, gd->flb_clk));
|
||||||
printf(" INP CLK %s MHz VCO CLK %s MHz\n",
|
printf(" INP CLK %s MHz VCO CLK %s MHz\n",
|
||||||
strmhz(buf1, gd->inp_clk)),
|
strmhz(buf1, gd->inp_clk),
|
||||||
strmhz(buf2, gd->vco_clk)));
|
strmhz(buf2, gd->vco_clk));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -65,8 +65,8 @@ int checkcpu(void)
|
||||||
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
||||||
ver);
|
ver);
|
||||||
printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
|
printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
|
||||||
strmhz(buf1, gd->cpu_clk)),
|
strmhz(buf1, gd->cpu_clk),
|
||||||
strmhz(buf2, gd->bus_clk)));
|
strmhz(buf2, gd->bus_clk));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -104,8 +104,8 @@ int checkcpu(void)
|
||||||
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
|
||||||
ver);
|
ver);
|
||||||
printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
|
printf(" CPU CLK %s MHz BUS CLK %s MHz\n",
|
||||||
strmhz(buf1, gd->cpu_clk)),
|
strmhz(buf1, gd->cpu_clk),
|
||||||
strmhz(buf2, gd->bus_clk)));
|
strmhz(buf2, gd->bus_clk));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue