diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-14 17:07:52 +1200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-14 17:07:52 +1200 |
commit | e9308cfd5ab4ade3d81cf591c7599c3a05a21b04 (patch) | |
tree | d1ca7c4ee3ba7d563d83af5b20ac25c30817bd19 | |
parent | 480082968a78151e731ebd304eeb6cada61a1cd1 (diff) | |
parent | 25fcf2b7f1f65d2cc12182ced3ccd47576970be4 (diff) | |
download | linux-3.10-e9308cfd5ab4ade3d81cf591c7599c3a05a21b04.tar.gz linux-3.10-e9308cfd5ab4ade3d81cf591c7599c3a05a21b04.tar.bz2 linux-3.10-e9308cfd5ab4ade3d81cf591c7599c3a05a21b04.zip |
Merge branch 'gpio/merge' of git://git.secretlab.ca/git/linux-2.6
* 'gpio/merge' of git://git.secretlab.ca/git/linux-2.6:
gpio-pca953x: fix gpio_base
gpio/omap: fix build error with certain OMAP1 configs
-rw-r--r-- | drivers/gpio/gpio-omap.c | 2 | ||||
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index 0599854e221..118ec12d2d5 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c @@ -34,8 +34,8 @@ struct gpio_bank { u16 irq; u16 virtual_irq_start; int method; -#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS) u32 suspend_wakeup; +#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS) u32 saved_wakeup; #endif u32 non_wakeup_gpios; diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index c43b8ff626a..0550dcb8581 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -577,6 +577,7 @@ pca953x_get_alt_pdata(struct i2c_client *client, int *gpio_base, int *invert) void pca953x_get_alt_pdata(struct i2c_client *client, int *gpio_base, int *invert) { + *gpio_base = -1; } #endif |