Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51d00293 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: linux_sdio_probe: use return value



Return ret from wilc_netdev_init instead of -1 for proper error handling.

Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0f34e924
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ static int linux_sdio_probe(struct sdio_func *func,
			    const struct sdio_device_id *id)
{
	struct wilc *wilc;
	int gpio;
	int gpio, ret;

	gpio = -1;
	if (IS_ENABLED(CONFIG_WILC1000_HW_OOB_INTR)) {
@@ -101,10 +101,11 @@ static int linux_sdio_probe(struct sdio_func *func,
	}

	dev_dbg(&func->dev, "Initializing netdev\n");
	if (wilc_netdev_init(&wilc, &func->dev, HIF_SDIO, gpio,
			     &wilc_hif_sdio)) {
	ret = wilc_netdev_init(&wilc, &func->dev, HIF_SDIO, gpio,
			     &wilc_hif_sdio);
	if (ret) {
		dev_err(&func->dev, "Couldn't initialize netdev\n");
		return -1;
		return ret;
	}
	sdio_set_drvdata(func, wilc);
	wilc->dev = &func->dev;