[PATCH] spi-gpio: Fix returned error code

From: Michael Buesch
Date: Sat Jul 26 2008 - 08:20:06 EST


This fixes the returned error code in case spi_new_device failed.

Reported-by: Torgil Svensson <torgil.svensson@xxxxxxxxx>
Signed-off-by: Michael Buesch <mb@xxxxxxxxx>


Index: linux-next/drivers/spi/spi_gpio.c
===================================================================
--- linux-next.orig/drivers/spi/spi_gpio.c 2008-07-26 14:16:32.000000000 +0200
+++ linux-next/drivers/spi/spi_gpio.c 2008-07-26 14:16:54.000000000 +0200
@@ -167,6 +167,7 @@ static int spi_gpio_probe(struct platfor
if (err)
goto err_bi_setup;
sp->bi.controller_data = sp;
+ err = -ENOMEM;
spidev = spi_new_device(master, &sp->bi);
if (!spidev)
goto err_new_dev;

--
Greetings Michael.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/