summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-02-10 16:23:00 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-12 07:56:57 +0000
commit22ad95394e99f5b3cfe587515f7f6d5642c6cf27 (patch)
treee7824e4f992787c13ab192bacd86235060743fd4 /src
parent6324759784de0d32e46d8c1af5a2419744a407c9 (diff)
downloadcoreboot-22ad95394e99f5b3cfe587515f7f6d5642c6cf27.tar.gz
coreboot-22ad95394e99f5b3cfe587515f7f6d5642c6cf27.tar.bz2
coreboot-22ad95394e99f5b3cfe587515f7f6d5642c6cf27.zip
sb/intel/x/lpc.c: Drop commented-out `gpio_init` call
Change-Id: I4255c63f87e8243237204ac86eb85e34b5aaa225 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50491 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src')
-rw-r--r--src/southbridge/intel/bd82x6x/lpc.c3
-rw-r--r--src/southbridge/intel/i82801gx/lpc.c3
-rw-r--r--src/southbridge/intel/ibexpeak/lpc.c3
3 files changed, 0 insertions, 9 deletions
diff --git a/src/southbridge/intel/bd82x6x/lpc.c b/src/southbridge/intel/bd82x6x/lpc.c
index 8bdaa5af8807..7f648a9f16af 100644
--- a/src/southbridge/intel/bd82x6x/lpc.c
+++ b/src/southbridge/intel/bd82x6x/lpc.c
@@ -529,9 +529,6 @@ static void lpc_init(struct device *dev)
printk(BIOS_ERR, "Unknown Chipset: 0x%04x\n", dev->device);
}
- /* Set the state of the GPIO lines. */
- //gpio_init(dev);
-
/* Initialize the real time clock. */
sb_rtc_init();
diff --git a/src/southbridge/intel/i82801gx/lpc.c b/src/southbridge/intel/i82801gx/lpc.c
index a8bc7e3fa191..a44bbf967cd0 100644
--- a/src/southbridge/intel/i82801gx/lpc.c
+++ b/src/southbridge/intel/i82801gx/lpc.c
@@ -335,9 +335,6 @@ static void lpc_init(struct device *dev)
/* Configure Cx state registers */
i82801gx_configure_cstates(dev);
- /* Set the state of the GPIO lines. */
- //gpio_init(dev);
-
/* Initialize the real time clock. */
i82801gx_rtc_init(dev);
diff --git a/src/southbridge/intel/ibexpeak/lpc.c b/src/southbridge/intel/ibexpeak/lpc.c
index 0a9647392c70..330928318733 100644
--- a/src/southbridge/intel/ibexpeak/lpc.c
+++ b/src/southbridge/intel/ibexpeak/lpc.c
@@ -431,9 +431,6 @@ static void lpc_init(struct device *dev)
/* Initialize power management */
mobile5_pm_init(dev);
- /* Set the state of the GPIO lines. */
- //gpio_init(dev);
-
/* Initialize the real time clock. */
pch_rtc_init(dev);