mainboard/emulation: Use C89 comments style & remove commented code
Change-Id: I627338505fe1273366bc8f6f528d829b3162b371 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16916 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
dedccb8556
commit
f5f0b7b71a
|
@ -40,9 +40,6 @@ void * asmlinkage romstage_main(unsigned long bist)
|
|||
/* Halt if there was a built in self test failure */
|
||||
report_bist_failure(bist);
|
||||
|
||||
//print_pci_devices();
|
||||
//dump_pci_devices();
|
||||
|
||||
cbmem_was_initted = !cbmem_recovery(0);
|
||||
|
||||
timestamp_init(timestamp_get());
|
||||
|
|
|
@ -17,8 +17,9 @@
|
|||
#include <console/console.h>
|
||||
#include <program_loading.h>
|
||||
|
||||
// the qemu part of all this is very, very non-hardware like.
|
||||
// so it gets its own bootblock.
|
||||
/* The qemu part of all this is very, very non-hardware like.
|
||||
* So it gets its own bootblock.
|
||||
*/
|
||||
void main(void)
|
||||
{
|
||||
if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE)) {
|
||||
|
|
|
@ -24,7 +24,7 @@ static void mainboard_enable(device_t dev)
|
|||
die("No dev0; die\n");
|
||||
}
|
||||
|
||||
// Where does RAM live?
|
||||
/* Where does RAM live? */
|
||||
ram_resource(dev, 0, 2048, 32768);
|
||||
cbmem_recovery(0);
|
||||
}
|
||||
|
|
|
@ -204,7 +204,7 @@ unsigned long acpi_fill_mcfg(unsigned long current)
|
|||
return current;
|
||||
|
||||
reg = pci_read_config32(dev, 0x60);
|
||||
if ((reg & 0x07) != 0x01) // require enabled + 256MB size
|
||||
if ((reg & 0x07) != 0x01) /* require enabled + 256MB size */
|
||||
return current;
|
||||
|
||||
current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current,
|
||||
|
|
|
@ -42,9 +42,6 @@ void * asmlinkage romstage_main(unsigned long bist)
|
|||
/* Halt if there was a built in self test failure */
|
||||
report_bist_failure(bist);
|
||||
|
||||
//print_pci_devices();
|
||||
//dump_pci_devices();
|
||||
|
||||
cbmem_was_initted = !cbmem_recovery(0);
|
||||
|
||||
timestamp_init(timestamp_get());
|
||||
|
|
Loading…
Reference in New Issue