diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-07-30 17:46:17 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-14 19:06:25 +0200 |
commit | 8ab989e31561cea0c6af5d5e242dd2be97bc73b4 (patch) | |
tree | 31bc3a2175762b179d2fc093c34f62c18b15b9ee /src/mainboard/iwill | |
parent | 589ef9de8faa2db11a7ce2769fc1d9396a82886b (diff) |
src/mainboard: Capitalize ROM, RAM, CPU and APIC
Change-Id: Ia1f24d328a065a54975adde067df36c5751bff2d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/15987
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/iwill')
-rw-r--r-- | src/mainboard/iwill/dk8_htx/acpi/amd8111.asl | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8_htx/fadt.c | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8_htx/get_bus_conf.c | 2 | ||||
-rw-r--r-- | src/mainboard/iwill/dk8_htx/romstage.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/iwill/dk8_htx/acpi/amd8111.asl b/src/mainboard/iwill/dk8_htx/acpi/amd8111.asl index 4d41c6079a..df722f8862 100644 --- a/src/mainboard/iwill/dk8_htx/acpi/amd8111.asl +++ b/src/mainboard/iwill/dk8_htx/acpi/amd8111.asl @@ -49,7 +49,7 @@ Device (SBC3) { - /* acpi smbus it should be 0x00040003 if 8131 present */ + /* ACPI smbus it should be 0x00040003 if 8131 present */ Method (_ADR, 0, NotSerialized) { Return (DADD(\_SB.PCI0.SBDN, 0x00010003)) diff --git a/src/mainboard/iwill/dk8_htx/fadt.c b/src/mainboard/iwill/dk8_htx/fadt.c index f677b4e8b2..43d7c16ff8 100644 --- a/src/mainboard/iwill/dk8_htx/fadt.c +++ b/src/mainboard/iwill/dk8_htx/fadt.c @@ -7,7 +7,7 @@ #include <console/console.h> #include <arch/acpi.h> -extern unsigned pm_base; /* pm_base should be set in sb acpi */ +extern unsigned pm_base; /* pm_base should be set in sb ACPI */ void acpi_create_fadt(acpi_fadt_t *fadt,acpi_facs_t *facs,void *dsdt){ diff --git a/src/mainboard/iwill/dk8_htx/get_bus_conf.c b/src/mainboard/iwill/dk8_htx/get_bus_conf.c index 19255fafcd..25dcab1ab3 100644 --- a/src/mainboard/iwill/dk8_htx/get_bus_conf.c +++ b/src/mainboard/iwill/dk8_htx/get_bus_conf.c @@ -64,7 +64,7 @@ static unsigned get_hcid(unsigned i) // we may need more way to find out hcid: subsystem id? GPIO read ? - // we need use id for 1. bus num, 2. mptable, 3. acpi table + // we need use id for 1. bus num, 2. mptable, 3. ACPI table return id; } diff --git a/src/mainboard/iwill/dk8_htx/romstage.c b/src/mainboard/iwill/dk8_htx/romstage.c index 9b5b38db72..4cf89b1703 100644 --- a/src/mainboard/iwill/dk8_htx/romstage.c +++ b/src/mainboard/iwill/dk8_htx/romstage.c @@ -159,5 +159,5 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx) dump_pci_devices(); #endif - post_cache_as_ram(); // bsp swtich stack to ram and copy sysinfo ram now + post_cache_as_ram(); // bsp swtich stack to RAM and copy sysinfo RAM now } |