diff options
author | Subrata Banik <subrata.banik@intel.com> | 2019-01-30 15:04:00 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2019-01-31 04:34:53 +0000 |
commit | 1f83e9d592f6be5a4fc36c7d21ae1410a2fbbdfe (patch) | |
tree | 070be1b5090ed4e97b3467dbc39989a406602c93 /src/southbridge | |
parent | b5b135ccd774482c52ae271dc7e9ba1f8639e19c (diff) |
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 <subrata.banik@intel.com>
Reviewed-on: https://review.coreboot.org/c/31152
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge')
-rw-r--r-- | src/southbridge/broadcom/bcm5785/early_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |