ralink: rt3833: fix compilation warning from device_reset in fe_probe
[openwrt/staging/wigyori.git] / target / linux / ramips / files / drivers / net / ethernet / ralink / mtk_eth_soc.c
index e07e5ed5a8f8924e8f4de62f26e4655d7d30e289..9876a247e3a27b2939961c9c6a053d5583cb5367 100644 (file)
@@ -1561,7 +1561,9 @@ static int fe_probe(struct platform_device *pdev)
        struct clk *sysclk;
        int err, napi_weight;
 
-       device_reset(&pdev->dev);
+       err = device_reset(&pdev->dev);
+       if (err)
+               dev_err(&pdev->dev, "failed to reset device\n");
 
        match = of_match_device(of_fe_match, &pdev->dev);
        soc = (struct fe_soc_data *)match->data;