rambi: Make KBD_IRQ_NEW_L open drain

KBD_IRQ_NEW_L (added for Rambi 2.0) has a pull-up resistor and should be
open drain.

TEST=None
BUG=chrome-os-partner:24760
BRANCH=None

Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org>
Change-Id: Ibf1beff3306c074f9f135b1bee82e299edf2380b
Reviewed-on: https://chromium-review.googlesource.com/181227
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Shawn Nematbakhsh
2013-12-30 13:17:17 -08:00
committed by chrome-internal-fetch
parent 9346e74039
commit 7c673390ae

View File

@@ -116,7 +116,7 @@ const struct gpio_info gpio_list[] = {
* from the new one when we deprecate the 1.5 boards.
*/
{"KBD_IRQ_L", LM4_GPIO_M, (1<<4), GPIO_OUT_HIGH, NULL},
{"KBD_IRQ_NEW_L", LM4_GPIO_M, (1<<3), GPIO_OUT_HIGH, NULL},
{"KBD_IRQ_NEW_L", LM4_GPIO_M, (1<<3), GPIO_ODR_HIGH, NULL},
};
BUILD_ASSERT(ARRAY_SIZE(gpio_list) == GPIO_COUNT);