From 68ba8c73c3b889e05f7664a35d89ee22776ff5fe Mon Sep 17 00:00:00 2001 From: Steve Sakoman Date: Tue, 15 Dec 2009 15:17:44 -0800 Subject: [PATCH 17/42] 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 494cd91..2472cb0 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.6.1