summaryrefslogtreecommitdiffstats
path: root/src/mainboard
diff options
context:
space:
mode:
authorAlexandru M Stan <amstan@chromium.org>2015-08-20 11:45:26 -0700
committerPatrick Georgi <pgeorgi@google.com>2015-08-28 06:45:19 +0000
commit3746465f4a6eede5acf2dcd9f9713de2c2663f3b (patch)
tree8fa1b03420680c9a3e251c3a14412307acdfc4e2 /src/mainboard
parentcbd7de72a43dafe8c5761fee9426be97ae3d3734 (diff)
downloadcoreboot-3746465f4a6eede5acf2dcd9f9713de2c2663f3b.tar.gz
coreboot-3746465f4a6eede5acf2dcd9f9713de2c2663f3b.tar.bz2
coreboot-3746465f4a6eede5acf2dcd9f9713de2c2663f3b.zip
veyron_rialto: remove spurious GPIO assignments
GPIO(0, B, 3) and GPIO(7, C, 5) are not actually connected, GPIO(0, B, 4) is named differently. BUG=chrome-os-partner:43031 TEST=Rialto should still boot just fine, USB should still work BRANCH=master Change-Id: I11879385de6e9b57ac28bcae699333beb5a0d64c Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Original-Commit-Id: a66bf1fd73ff8d15d4ec1a8f3602465941285c32 Original-Change-Id: Ib7d2baa6ed1ab38db786eb4d5e77316ad72cbfd4 Original-Signed-off-by: Alexandru M Stan <amstan@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/294713 Original-Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/11400 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/google/veyron_rialto/mainboard.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mainboard/google/veyron_rialto/mainboard.c b/src/mainboard/google/veyron_rialto/mainboard.c
index 4dba66672198..c2dde19a7244 100644
--- a/src/mainboard/google/veyron_rialto/mainboard.c
+++ b/src/mainboard/google/veyron_rialto/mainboard.c
@@ -43,9 +43,7 @@
static void configure_usb(void)
{
- gpio_output(GPIO(0, B, 3), 1); /* HOST1_PWR_EN */
- gpio_output(GPIO(0, B, 4), 1); /* USBOTG_PWREN_H */
- gpio_output(GPIO(7, C, 5), 1); /* 5V_DRV */
+ gpio_output(GPIO(0, B, 4), 1); /* USB2_PWR_EN */
}
static void configure_emmc(void)