These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / rtc / rtc-ds1286.c
index 2fe537f..8247a29 100644 (file)
@@ -332,13 +332,11 @@ static int ds1286_probe(struct platform_device *pdev)
        struct resource *res;
        struct ds1286_priv *priv;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!res)
-               return -ENODEV;
        priv = devm_kzalloc(&pdev->dev, sizeof(struct ds1286_priv), GFP_KERNEL);
        if (!priv)
                return -ENOMEM;
 
+       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        priv->rtcregs = devm_ioremap_resource(&pdev->dev, res);
        if (IS_ERR(priv->rtcregs))
                return PTR_ERR(priv->rtcregs);