soc/amd/common/block/lpc: move ACPI name to common code

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I7517d81d41422cfa10fabd12ab3da4f61c3f9034
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50818
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Held 2021-02-16 23:52:58 +01:00
parent 61e60d1c16
commit 3e29ca93fc
3 changed files with 8 additions and 4 deletions

View file

@ -319,11 +319,19 @@ static void lpc_enable_resources(struct device *dev)
lpc_enable_children_resources(dev);
}
#if CONFIG(HAVE_ACPI_TABLES)
static const char *lpc_acpi_name(const struct device *dev)
{
return "LPCB";
}
#endif
static struct device_operations lpc_ops = {
.read_resources = lpc_read_resources,
.set_resources = lpc_set_resources,
.enable_resources = lpc_enable_resources,
#if CONFIG(HAVE_ACPI_TABLES)
.acpi_name = lpc_acpi_name,
.write_acpi_tables = southbridge_write_acpi_tables,
#endif
.init = lpc_init,

View file

@ -39,8 +39,6 @@ static const char *soc_acpi_name(const struct device *dev)
return "GNB";
case IOMMU_DEVFN:
return "IOMM";
case LPC_DEVFN:
return "LPCB";
case SMBUS_DEVFN:
return "SBUS";
default:

View file

@ -81,8 +81,6 @@ const char *soc_acpi_name(const struct device *dev)
return "PBR8";
case EHCI1_DEVFN:
return "EHC0";
case LPC_DEVFN:
return "LPCB";
case SD_DEVFN:
return "SDCN";
case SMBUS_DEVFN: