diff options
author | Shawn Guo | 2012-05-19 15:34:58 +0200 |
---|---|---|
committer | Grant Likely | 2012-05-19 20:17:35 +0200 |
commit | 3e11f7b840b4671213c66817294ad7dd0b572756 (patch) | |
tree | fc9246cd2e491e8c9b6f7cec994da2b314b7c4ca /drivers/gpio/gpio-ep93xx.c | |
parent | gpiolib: Remove 'const' from data argument of gpiochip_find() (diff) | |
download | kernel-qcow2-linux-3e11f7b840b4671213c66817294ad7dd0b572756.tar.gz kernel-qcow2-linux-3e11f7b840b4671213c66817294ad7dd0b572756.tar.xz kernel-qcow2-linux-3e11f7b840b4671213c66817294ad7dd0b572756.zip |
gpio/generic: initialize basic_mmio_gpio shadow variables properly
It fixes the issue in gpio-generic that commit fb14921 (gpio/mxc: add
missing initialization of basic_mmio_gpio shadow variables) manged to
fix in gpio-mxc driver, so that other platform specific drivers do not
suffer from the same problem over and over again.
Changes since v1:
* Turn the last parameter of bgpio_init() "bool big_endian" into
"unsigned long flags" and give those really quirky hardwares a
chance to tell that reg_set and reg_dir are unreadable.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
[grant.likely: Fix big-endian usage to explicitly set BBGPIOF_BIG_ENDIAN]
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/gpio/gpio-ep93xx.c')
-rw-r--r-- | drivers/gpio/gpio-ep93xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-ep93xx.c b/drivers/gpio/gpio-ep93xx.c index 776b772523e5..9fe5b8fe9be8 100644 --- a/drivers/gpio/gpio-ep93xx.c +++ b/drivers/gpio/gpio-ep93xx.c @@ -325,7 +325,7 @@ static int ep93xx_gpio_add_bank(struct bgpio_chip *bgc, struct device *dev, void __iomem *dir = mmio_base + bank->dir; int err; - err = bgpio_init(bgc, dev, 1, data, NULL, NULL, dir, NULL, false); + err = bgpio_init(bgc, dev, 1, data, NULL, NULL, dir, NULL, 0); if (err) return err; |