diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2024-01-26 14:41:14 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-01-27 16:39:21 +0000 |
commit | 0079200e8d45db31fcd0a2501f281809523329ca (patch) | |
tree | 8fa84b0ebad6e4e979ae7be4a1ea0f034474f483 /src/mainboard/amd/birman | |
parent | d9e826322031f5936231be44e3b2c406be40a304 (diff) |
soc/amd: use common ACPI_SCI_IRQ definition
ACPI_SCI_IRQ is defined as 9 for all AMD SoCs, so move the definition to
the common amdblocks/acpi.h. Since all but Stoneyridge's soc/acpi.h are
now empty, delete those files too.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I8210c98dc4cf2c6001d5273d132053278ff7fea5
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80222
Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/amd/birman')
-rw-r--r-- | src/mainboard/amd/birman/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/birman/mainboard.c b/src/mainboard/amd/birman/mainboard.c index e97bb31c6d..0deba6710f 100644 --- a/src/mainboard/amd/birman/mainboard.c +++ b/src/mainboard/amd/birman/mainboard.c @@ -1,9 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include <amdblocks/acpi.h> #include <amdblocks/amd_pci_util.h> #include <commonlib/helpers.h> #include <device/device.h> -#include <soc/acpi.h> #include <types.h> #include "gpio.h" |