1
0
Fork 0
forked from len0rd/rockbox

imx233: fix pinctrl for stmp3600 and stmp3700

Change-Id: I87281b89315890fa285cb9a63fda5c90bdc8cdbf
This commit is contained in:
Amaury Pouly 2013-06-16 21:15:09 +02:00
parent f4fdf1ffe2
commit 52426d0891
10 changed files with 70 additions and 69 deletions

View file

@ -58,12 +58,12 @@ static void i2c_sda_out(bool high)
static bool i2c_scl_in(void)
{
return imx233_pinctrl_get_gpio_mask(1, 1 << 22);
return imx233_pinctrl_get_gpio(1, 22);
}
static bool i2c_sda_in(void)
{
return imx233_pinctrl_get_gpio_mask(1, 1 << 24);
return imx233_pinctrl_get_gpio(1, 24);
}
static void i2c_delay(int d)