aboutsummaryrefslogtreecommitdiff
path: root/src/ec/acpi
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2021-09-06 23:59:11 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-09-08 18:48:53 +0000
commitda3ef13d27809bc004e01a21c9d8bbc7445ba499 (patch)
tree6f701222833f43b87b384527187d82e18d110d6a /src/ec/acpi
parentc28630479612bcf9327809dbbf4383ac2aed62ca (diff)
ec/acpi: Remove empty "chip" driver
There was no code attached to this driver and hence one couldn't hook it up to any device. Even if mentioned in the `devicetree.cb` it was still dead code. Change-Id: I12415ea9e0120b1d00524f8f39f9b2d02f46ba05 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57431 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec/acpi')
-rw-r--r--src/ec/acpi/ec.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ec/acpi/ec.c b/src/ec/acpi/ec.c
index a60de27ac5..5d6fb189fb 100644
--- a/src/ec/acpi/ec.c
+++ b/src/ec/acpi/ec.c
@@ -148,7 +148,3 @@ void ec_set_ports(u16 cmd_reg, u16 data_reg)
ec_cmd_reg = cmd_reg;
ec_data_reg = data_reg;
}
-
-struct chip_operations ec_acpi_ops = {
- CHIP_NAME("ACPI Embedded Controller")
-};