Re: [PATCH 3/4] gpio: palmas: Add support for Palams GPIO

From: Linus Walleij
Date: Thu Jan 10 2013 - 05:56:55 EST


On Thu, Jan 3, 2013 at 11:46 AM, Laxman Dewangan <ldewangan@xxxxxxxxxx> wrote:

> Add gpio driver for TI Palmas series PMIC. This has 8 gpio which can
> work as input/output.
>
> Signed-off-by: Laxman Dewangan <ldewangan@xxxxxxxxxx>

This driver seems unnecessary. Can't you just use
drivers/gpio/gpio-generic.c ?

> +static int palmas_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
> +{
> + struct palmas_gpio *pg = to_palmas_gpio(gc);
> + struct palmas *palmas = pg->palmas;
> +
> + return palmas_irq_get_virq(palmas, PALMAS_GPIO_0_IRQ + offset);
> +}

Why are you implementing this for a driver which does not even expose
the ability to trigger IRQs? If it's supposed to support IRQs it should
register a struct irq_chip.

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/