From 1f83e9d592f6be5a4fc36c7d21ae1410a2fbbdfe Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Wed, 30 Jan 2019 15:04:00 +0530 Subject: lib/hardwaremain: Fix more ACPI/IOAPIC typos CB:31139 fixs few ACPI type error. Here is few more typo mistake. Change-Id: Ieecf0ba8fe09ed5003d5ae766079b8f83cc891b9 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/31152 Reviewed-by: HAOUAS Elyes Tested-by: build bot (Jenkins) --- src/include/nhlt.h | 2 +- src/mainboard/hp/dl165_g6_fam10/romstage.c | 2 +- src/southbridge/broadcom/bcm5785/early_setup.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/include/nhlt.h b/src/include/nhlt.h index a361ed8fda..e4cfcf63fb 100644 --- a/src/include/nhlt.h +++ b/src/include/nhlt.h @@ -54,7 +54,7 @@ struct nhlt_format_config; /* Obtain an nhlt object for adding endpoints. Returns NULL on error. */ struct nhlt *nhlt_init(void); -/* Return the size of the NHLT table including APCI header. */ +/* Return the size of the NHLT table including ACPI header. */ size_t nhlt_current_size(struct nhlt *nhlt); /* diff --git a/src/mainboard/hp/dl165_g6_fam10/romstage.c b/src/mainboard/hp/dl165_g6_fam10/romstage.c index 5b19688d68..6554eb1be2 100644 --- a/src/mainboard/hp/dl165_g6_fam10/romstage.c +++ b/src/mainboard/hp/dl165_g6_fam10/romstage.c @@ -197,7 +197,7 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx) fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr); enable_smbus(); - //do we need apci timer, tsc...., only debug need it for better output + //do we need ACPI timer, tsc...., only debug need it for better output /* all ap stopped? */ // init_timer(); // Need to use TMICT to synchronize FID/VID diff --git a/src/southbridge/broadcom/bcm5785/early_setup.c b/src/southbridge/broadcom/bcm5785/early_setup.c index df7217c79b..ee9967d694 100644 --- a/src/southbridge/broadcom/bcm5785/early_setup.c +++ b/src/southbridge/broadcom/bcm5785/early_setup.c @@ -166,7 +166,7 @@ static void bcm5785_early_setup(void) // enable device on bcm5785 at first dev = pci_locate_device(PCI_ID(0x1166, 0x0205), 0); dword = pci_read_config32(dev, 0x64); - dword |= (1 << 15) | (1 << 11) | (1 << 3); // ioapci enable + dword |= (1 << 15) | (1 << 11) | (1 << 3); // IOAPIC enable dword |= 1 << 8; // USB enable dword |= /* (1 << 27)|*/ 1 << 14; // IDE enable pci_write_config32(dev, 0x64, dword); -- cgit v1.2.3