Skip to content

Commit

Permalink
staging: rtl8187se: r8180_core.c: Inspect the return value of registe…
Browse files Browse the repository at this point in the history
…r_netdev()

Inspect the return value of register_netdev() in the driver probe routine and
return -ENODEV in case of error.

Signed-off-by: Kumar Amit Mehta <gmate.amit@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kumar Amit Mehta authored and Greg Kroah-Hartman committed Nov 15, 2012
1 parent c17d37d commit 36e97a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/staging/rtl8187se/r8180_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -3258,7 +3258,8 @@ static int __devinit rtl8180_pci_probe(struct pci_dev *pdev,

netif_carrier_off(dev);

register_netdev(dev);
if (register_netdev(dev))
goto fail1;

rtl8180_proc_init_one(dev);

Expand Down

0 comments on commit 36e97a5

Please sign in to comment.