From 196c189ca20294fdcef264995f68cca74b1e16ea Mon Sep 17 00:00:00 2001 From: Steve Sakoman Date: Tue, 15 Dec 2009 15:17:44 -0800 Subject: [PATCH 03/16] drivers: net: smsc911x: return ENODEV if device is not found Signed-off-by: Steve Sakoman --- drivers/net/smsc911x.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c index f9cdcbc..9ca18b5 100644 --- a/drivers/net/smsc911x.c +++ b/drivers/net/smsc911x.c @@ -2021,8 +2021,10 @@ static int __devinit smsc911x_drv_probe(struct platform_device *pdev) } retval = smsc911x_init(dev); - if (retval < 0) + if (retval < 0) { + retval = -ENODEV; goto out_unmap_io_3; + } /* configure irq polarity and type before connecting isr */ if (pdata->config.irq_polarity == SMSC911X_IRQ_POLARITY_ACTIVE_HIGH) -- 1.6.2.4