Using the return value of ccw_device_set_online as return value for
dasd_generic_probe() causes the DASD to fail setting online
Signed-off-by: Stefan Haberland <stefan.haberland@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
                ret = ccw_device_set_online(cdev);
        if (ret)
                printk(KERN_WARNING
-                      "dasd_generic_probe: could not initially online "
-                      "ccw-device %s\n", cdev->dev.bus_id);
-       return ret;
+                      "dasd_generic_probe: could not initially "
+                      "online ccw-device %s; return code: %d\n",
+                      cdev->dev.bus_id, ret);
+       return 0;
 }
 
 /*