Commit a342d215 authored by Ben Dooks's avatar Ben Dooks Committed by Linus Torvalds

gpio: fix probe() error return in gpio driver probes

A number of drivers in drivers/gpio return -ENODEV when confronted with
missing setup parameters such as the platform data.  However, returning
-ENODEV causes the driver layer to silently ignore the driver as it
assumes the probe did not find anything and was only speculative.

To make life easier to discern why a driver is not being attached, change
to returning -EINVAL, which is a better description of the fact that the
driver data was not valid.

Also add a set of dev_dbg() statements to the error paths to provide an
better explanation of the error as there may be more that one point in the
driver.
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 5b96f172
...@@ -217,8 +217,10 @@ static int __devinit max7301_probe(struct spi_device *spi) ...@@ -217,8 +217,10 @@ static int __devinit max7301_probe(struct spi_device *spi)
int i, ret; int i, ret;
pdata = spi->dev.platform_data; pdata = spi->dev.platform_data;
if (!pdata || !pdata->base) if (!pdata || !pdata->base) {
return -ENODEV; dev_dbg(&spi->dev, "incorrect or missing platform data\n");
return -EINVAL;
}
/* /*
* bits_per_word cannot be configured in platform data * bits_per_word cannot be configured in platform data
......
...@@ -267,8 +267,10 @@ static int __devinit max732x_probe(struct i2c_client *client, ...@@ -267,8 +267,10 @@ static int __devinit max732x_probe(struct i2c_client *client,
int ret, nr_port; int ret, nr_port;
pdata = client->dev.platform_data; pdata = client->dev.platform_data;
if (pdata == NULL) if (pdata == NULL) {
return -ENODEV; dev_dbg(&client->dev, "no platform data\n");
return -EINVAL;
}
chip = kzalloc(sizeof(struct max732x_chip), GFP_KERNEL); chip = kzalloc(sizeof(struct max732x_chip), GFP_KERNEL);
if (chip == NULL) if (chip == NULL)
......
...@@ -310,8 +310,10 @@ static int mcp23s08_probe(struct spi_device *spi) ...@@ -310,8 +310,10 @@ static int mcp23s08_probe(struct spi_device *spi)
unsigned base; unsigned base;
pdata = spi->dev.platform_data; pdata = spi->dev.platform_data;
if (!pdata || !gpio_is_valid(pdata->base)) if (!pdata || !gpio_is_valid(pdata->base)) {
return -ENODEV; dev_dbg(&spi->dev, "invalid or missing platform data\n");
return -EINVAL;
}
for (addr = 0; addr < 4; addr++) { for (addr = 0; addr < 4; addr++) {
if (!pdata->chip[addr].is_present) if (!pdata->chip[addr].is_present)
......
...@@ -202,8 +202,10 @@ static int __devinit pca953x_probe(struct i2c_client *client, ...@@ -202,8 +202,10 @@ static int __devinit pca953x_probe(struct i2c_client *client,
int ret; int ret;
pdata = client->dev.platform_data; pdata = client->dev.platform_data;
if (pdata == NULL) if (pdata == NULL) {
return -ENODEV; dev_dbg(&client->dev, "no platform data\n");
return -EINVAL;
}
chip = kzalloc(sizeof(struct pca953x_chip), GFP_KERNEL); chip = kzalloc(sizeof(struct pca953x_chip), GFP_KERNEL);
if (chip == NULL) if (chip == NULL)
......
...@@ -188,8 +188,10 @@ static int pcf857x_probe(struct i2c_client *client, ...@@ -188,8 +188,10 @@ static int pcf857x_probe(struct i2c_client *client,
int status; int status;
pdata = client->dev.platform_data; pdata = client->dev.platform_data;
if (!pdata) if (!pdata) {
return -ENODEV; dev_dbg(&client->dev, "no platform data\n");
return -EINVAL;
}
/* Allocate, initialize, and register this gpio_chip. */ /* Allocate, initialize, and register this gpio_chip. */
gpio = kzalloc(sizeof *gpio, GFP_KERNEL); gpio = kzalloc(sizeof *gpio, GFP_KERNEL);
...@@ -248,8 +250,10 @@ static int pcf857x_probe(struct i2c_client *client, ...@@ -248,8 +250,10 @@ static int pcf857x_probe(struct i2c_client *client,
else else
status = i2c_read_le16(client); status = i2c_read_le16(client);
} else } else {
status = -ENODEV; dev_dbg(&client->dev, "unsupported number of gpios\n");
status = -EINVAL;
}
if (status < 0) if (status < 0)
goto fail; goto fail;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment