mainboard/artecgroup: Use C89 comments style & remove commented code
Change-Id: Ia1e7f558bbc44001358339a522e59a2ef7c420fb Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16923 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
aacd548c26
commit
8d94fbd999
|
@ -34,7 +34,7 @@ static void init_gpio(void)
|
|||
|
||||
static void init(struct device *dev)
|
||||
{
|
||||
// BOARD-SPECIFIC INIT
|
||||
/* BOARD-SPECIFIC INIT */
|
||||
printk(BIOS_DEBUG, "ARTECGROUP DBE61 ENTER %s\n", __func__);
|
||||
|
||||
init_gpio();
|
||||
|
|
|
@ -87,16 +87,4 @@ void main(unsigned long bist)
|
|||
cpuRegInit(0, DIMM0, DIMM1, DRAM_TERMINATED);
|
||||
|
||||
sdram_initialize(1, memctrl);
|
||||
|
||||
/* Dump memory configuration. */
|
||||
#if 0
|
||||
msr = rdmsr(MC_CF07_DATA);
|
||||
printk(BIOS_DEBUG, "MC_CF07_DATA: %08x value is: %08x:%08x\n", MC_CF07_DATA, msr.hi, msr.lo);
|
||||
|
||||
msr = rdmsr(MC_CF1017_DATA);
|
||||
printk(BIOS_DEBUG, "MC_CF1017_DATA: %08x value is: %08x:%08x\n", MC_CF07_DATA, msr.hi, msr.lo);
|
||||
|
||||
msr = rdmsr(MC_CF8F_DATA);
|
||||
printk(BIOS_DEBUG, "MC_CF8F_DATA: %08x value is: %08x:%08x\n", MC_CF07_DATA, msr.hi, msr.lo);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue