From: Felix Fietkau Date: Sun, 17 Jan 2010 22:57:08 +0000 (+0000) Subject: ar71xx: fix return statement in the rtl8366 driver X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=5db564846deb9632cc4810fbe39400f3df8a0cb0;p=15.05%2Fopenwrt.git ar71xx: fix return statement in the rtl8366 driver git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19204 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c b/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c index 3b4795ba4b..e2172f1b90 100644 --- a/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c +++ b/target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c @@ -1731,7 +1731,7 @@ static int rtl8366_smi_switch_init(struct rtl8366_smi *smi) if (err) dev_err(&smi->pdev->dev, "switch registration failed\n"); - return; + return err; } static void rtl8366_smi_switch_cleanup(struct rtl8366_smi *smi)