From: Axel Lin Date: Wed, 6 Jul 2011 02:08:27 +0000 (+0800) Subject: gpio: tps65910: add missing breaks in tps65910_gpio_init X-Git-Tag: v3.0-rc7~42^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58956ba23e2dce83e78cd212cc8305261647684f;p=thirdparty%2Fkernel%2Flinux.git gpio: tps65910: add missing breaks in tps65910_gpio_init Signed-off-by: Axel Lin Signed-off-by: Grant Likely --- diff --git a/drivers/gpio/tps65910-gpio.c b/drivers/gpio/tps65910-gpio.c index 8d1ddfdd63eb2..15097ca616d69 100644 --- a/drivers/gpio/tps65910-gpio.c +++ b/drivers/gpio/tps65910-gpio.c @@ -81,8 +81,10 @@ void tps65910_gpio_init(struct tps65910 *tps65910, int gpio_base) switch(tps65910_chip_id(tps65910)) { case TPS65910: tps65910->gpio.ngpio = 6; + break; case TPS65911: tps65910->gpio.ngpio = 9; + break; default: return; }