aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch/lpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/broadwell/pch/lpc.c')
-rw-r--r--src/soc/intel/broadwell/pch/lpc.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/soc/intel/broadwell/pch/lpc.c b/src/soc/intel/broadwell/pch/lpc.c
index 13e4fd7e33..41da81e658 100644
--- a/src/soc/intel/broadwell/pch/lpc.c
+++ b/src/soc/intel/broadwell/pch/lpc.c
@@ -593,16 +593,6 @@ static void pch_lpc_read_resources(struct device *dev)
pch_lpc_add_io_resources(dev);
}
-static unsigned long acpi_write_serialio_ssdt(unsigned long current, struct acpi_rsdp *rsdp)
-{
- printk(BIOS_DEBUG, "ACPI: * SSDT2\n");
- acpi_header_t *ssdt = (acpi_header_t *)current;
- acpi_create_serialio_ssdt(ssdt);
- current += ssdt->length;
- acpi_add_table(rsdp, ssdt);
- return acpi_align_current(current);
-}
-
static unsigned long broadwell_write_acpi_tables(const struct device *device,
unsigned long current,
struct acpi_rsdp *rsdp)
@@ -613,10 +603,7 @@ static unsigned long broadwell_write_acpi_tables(const struct device *device,
PCH_DEV_UART1 : PCH_DEV_UART0,
ACPI_ACCESS_SIZE_DWORD_ACCESS);
}
- current = acpi_write_hpet(device, current, rsdp);
- current = acpi_align_current(current);
- current = acpi_write_serialio_ssdt(current, rsdp);
- return current;
+ return acpi_write_hpet(device, current, rsdp);
}
static struct device_operations device_ops = {