From 5acf2c1e6fa310e527391587a4bca9f8d6effc46 Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Fri, 2 Sep 2016 09:37:57 +0200 Subject: [PATCH] ryu: remove old workaround on GPIO C15 Before P3 (long time ago), the PI3USB9281 has an I2C requiring a workaround using the GPIO C15. The workaround has been removed when we switched to PI3USB9281A on P3 and the GPIO has been re-used since. Remove the old GPIO definition to avoid conflicts with its new usage. Signed-off-by: Vincent Palatin BRANCH=smaug BUG=chrome-os-partner:31526 TEST=make BOARD=ryu Change-Id: Ieb7071b7ca27f3e9a4719592441b6a0b4c455b27 Reviewed-on: https://chromium-review.googlesource.com/380555 Commit-Ready: Vincent Palatin Tested-by: Vincent Palatin Reviewed-by: Bill Richardson --- board/ryu/gpio.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/board/ryu/gpio.inc b/board/ryu/gpio.inc index 41df8b85b1..e48946cfee 100644 --- a/board/ryu/gpio.inc +++ b/board/ryu/gpio.inc @@ -106,9 +106,6 @@ GPIO(MASTER_I2C_SDA, PIN(A, 14), GPIO_INPUT) GPIO(SLAVE_I2C_SCL, PIN(A, 9), GPIO_INPUT) GPIO(SLAVE_I2C_SDA, PIN(A, 10), GPIO_INPUT) -/* SCL gating for PI3USB9281 */ -GPIO(PERICOM_CLK_EN, PIN(C, 15), GPIO_OUT_HIGH) - /* Case closed debugging. */ GPIO(USB_PU_EN_L, PIN(C, 2), GPIO_OUT_HIGH) GPIO(PD_DISABLE_DEBUG, PIN(C, 6), GPIO_OUT_LOW)