pinctrl: meson-gxl: Fix typo in AO I2S pins
authorNeil Armstrong <narmstrong@baylibre.com>
Wed, 24 May 2017 08:20:38 +0000 (10:20 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 29 May 2017 08:56:33 +0000 (10:56 +0200)
The AO I2S pins were incorrectly defined with the EE pin offset.

Fixes: 2899adf0422 ("pinctrl: meson: gxl: add i2s output pins")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/meson/pinctrl-meson-gxl.c

index 2bc1e3d..5422297 100644 (file)
@@ -277,8 +277,8 @@ static const unsigned int pwm_ao_a_8_pins[] = { PIN(GPIOAO_8, 0) };
 static const unsigned int pwm_ao_b_pins[]      = { PIN(GPIOAO_9, 0) };
 static const unsigned int pwm_ao_b_6_pins[]    = { PIN(GPIOAO_6, 0) };
 
-static const unsigned int i2s_out_ch23_ao_pins[] = { PIN(GPIOAO_8, EE_OFF) };
-static const unsigned int i2s_out_ch45_ao_pins[] = { PIN(GPIOAO_9, EE_OFF) };
+static const unsigned int i2s_out_ch23_ao_pins[] = { PIN(GPIOAO_8, 0) };
+static const unsigned int i2s_out_ch45_ao_pins[] = { PIN(GPIOAO_9, 0) };
 
 static const unsigned int spdif_out_ao_6_pins[]        = { PIN(GPIOAO_6, EE_OFF) };
 static const unsigned int spdif_out_ao_9_pins[]        = { PIN(GPIOAO_9, EE_OFF) };