Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328456
b: refs/heads/master
c: 061505f
h: refs/heads/master
v: v3
  • Loading branch information
Maxime Ripard authored and Linus Walleij committed Sep 7, 2012
1 parent 675bd7b commit 6ac5fcf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 72eac3020de35a2c3fd0d39a26399989a0a9392e
refs/heads/master: 061505fd396c89b358a1b7a655565b2bb05b2fdc
13 changes: 6 additions & 7 deletions trunk/drivers/gpio/gpio-74x164.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ static int __devinit gen_74x164_probe(struct spi_device *spi)
struct gen_74x164_chip_platform_data *pdata;
int ret;

pdata = spi->dev.platform_data;
if (!pdata || !pdata->base) {
dev_dbg(&spi->dev, "incorrect or missing platform data\n");
return -EINVAL;
}

/*
* bits_per_word cannot be configured in platform data
*/
Expand All @@ -94,6 +88,12 @@ static int __devinit gen_74x164_probe(struct spi_device *spi)
if (!chip)
return -ENOMEM;

pdata = spi->dev.platform_data;
if (pdata && pdata->base)
chip->gpio_chip.base = pdata->base;
else
chip->gpio_chip.base = -1;

mutex_init(&chip->lock);

dev_set_drvdata(&spi->dev, chip);
Expand All @@ -104,7 +104,6 @@ static int __devinit gen_74x164_probe(struct spi_device *spi)
chip->gpio_chip.direction_output = gen_74x164_direction_output;
chip->gpio_chip.get = gen_74x164_get_value;
chip->gpio_chip.set = gen_74x164_set_value;
chip->gpio_chip.base = pdata->base;
chip->gpio_chip.ngpio = 8;
chip->gpio_chip.can_sleep = 1;
chip->gpio_chip.dev = &spi->dev;
Expand Down

0 comments on commit 6ac5fcf

Please sign in to comment.