Two GPIO fixes for the v3.9 series:
- Fix erroneous return value in the ICH driver - Make the STMPE driver proper properly on device tree boots -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (GNU/Linux) iQIcBAABAgAGBQJRXURwAAoJEEEQszewGV1zH1oQALDh9V1Lc8IuEKfhNqw1lWoI kgoEeHc22ccx8Q2GiP1vSCLZjNH9Z63SEP+DQbSDd2mEI9jePZSkZyR1dXhde6Hv VSGGTxi2SfJumzaz+BqIpGcTpNfEaipcX8OkYvZFAULa9cGxHOSDXu5rwt3q/vH2 2BVR4/USW6r9QUXnwZXp3WVf7ADyocFvtJZbO7bs8wzcE27A9ur9FFpk9ZvjLUPC E+oH5Oih9GeuQOVdXJPdF3RN1m/p9DRfa/6acsyvgqAfLsRA7kffGRuXIzE5c3BI QBNc5UHf0KR+hhwFPsOb37YTBuYOIk9RftYIej7XJymmxaigRucJQMWpCb42ZWEi oTcR0Ny62v5DsDntqunVuNxRVRENC0fCgPrpcPEJtVruEquzeXc2vbgs6vfto4ng mb5ewUStCzxYHLAPSJE+sDa9odsHK4akb7NEetHTFz8Gr6OZrUtomgDBa9aMPlOS RpguIMy1AvFFEUDKOyItOc5mXvYijan8mQACFRcNmz5yH7Cx5ZE6Xg3fYCqAnmrk Zf4Q/EqejvSqjIwG6kb1hR/uH+lzSFNwJy9GZWRlttG2boAEmDEcCoEC8FLqjd8j 7xzccZa+pA4RLsielZsL7JOE0OJjr5oWXoS2vYzkG5PZO5J+kOpN0xcLb9fd8bUR SxO7vbNF/bqSJILoeI/Y =lfbO -----END PGP SIGNATURE----- Merge tag 'gpio-fixes-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio Pull GPIO fixes from Linus Walleij: "Two GPIO fixes for the v3.9 series: - Fix erroneous return value in the ICH driver - Make the STMPE driver proper properly on device tree boots" * tag 'gpio-fixes-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: gpio: stmpe: pass DT node to irqdomain gpio-ich: Fix value returned by ichx_gpio_request
This commit is contained in:
commit
8d448270fe
2 changed files with 12 additions and 5 deletions
|
@ -214,7 +214,7 @@ static int ichx_gpio_request(struct gpio_chip *chip, unsigned nr)
|
||||||
* If it can't be trusted, assume that the pin can be used as a GPIO.
|
* If it can't be trusted, assume that the pin can be used as a GPIO.
|
||||||
*/
|
*/
|
||||||
if (ichx_priv.desc->use_sel_ignore[nr / 32] & (1 << (nr & 0x1f)))
|
if (ichx_priv.desc->use_sel_ignore[nr / 32] & (1 << (nr & 0x1f)))
|
||||||
return 1;
|
return 0;
|
||||||
|
|
||||||
return ichx_read_bit(GPIO_USE_SEL, nr) ? 0 : -ENODEV;
|
return ichx_read_bit(GPIO_USE_SEL, nr) ? 0 : -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,11 +307,15 @@ static const struct irq_domain_ops stmpe_gpio_irq_simple_ops = {
|
||||||
.xlate = irq_domain_xlate_twocell,
|
.xlate = irq_domain_xlate_twocell,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int stmpe_gpio_irq_init(struct stmpe_gpio *stmpe_gpio)
|
static int stmpe_gpio_irq_init(struct stmpe_gpio *stmpe_gpio,
|
||||||
|
struct device_node *np)
|
||||||
{
|
{
|
||||||
int base = stmpe_gpio->irq_base;
|
int base = 0;
|
||||||
|
|
||||||
stmpe_gpio->domain = irq_domain_add_simple(NULL,
|
if (!np)
|
||||||
|
base = stmpe_gpio->irq_base;
|
||||||
|
|
||||||
|
stmpe_gpio->domain = irq_domain_add_simple(np,
|
||||||
stmpe_gpio->chip.ngpio, base,
|
stmpe_gpio->chip.ngpio, base,
|
||||||
&stmpe_gpio_irq_simple_ops, stmpe_gpio);
|
&stmpe_gpio_irq_simple_ops, stmpe_gpio);
|
||||||
if (!stmpe_gpio->domain) {
|
if (!stmpe_gpio->domain) {
|
||||||
|
@ -346,6 +350,9 @@ static int stmpe_gpio_probe(struct platform_device *pdev)
|
||||||
stmpe_gpio->chip = template_chip;
|
stmpe_gpio->chip = template_chip;
|
||||||
stmpe_gpio->chip.ngpio = stmpe->num_gpios;
|
stmpe_gpio->chip.ngpio = stmpe->num_gpios;
|
||||||
stmpe_gpio->chip.dev = &pdev->dev;
|
stmpe_gpio->chip.dev = &pdev->dev;
|
||||||
|
#ifdef CONFIG_OF
|
||||||
|
stmpe_gpio->chip.of_node = np;
|
||||||
|
#endif
|
||||||
stmpe_gpio->chip.base = pdata ? pdata->gpio_base : -1;
|
stmpe_gpio->chip.base = pdata ? pdata->gpio_base : -1;
|
||||||
|
|
||||||
if (pdata)
|
if (pdata)
|
||||||
|
@ -366,7 +373,7 @@ static int stmpe_gpio_probe(struct platform_device *pdev)
|
||||||
goto out_free;
|
goto out_free;
|
||||||
|
|
||||||
if (irq >= 0) {
|
if (irq >= 0) {
|
||||||
ret = stmpe_gpio_irq_init(stmpe_gpio);
|
ret = stmpe_gpio_irq_init(stmpe_gpio, np);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_disable;
|
goto out_disable;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue