*/
 int sas_discover_sata(struct domain_device *dev)
 {
-       int res;
-
        if (dev->dev_type == SAS_SATA_PM)
                return -ENODEV;
 
        dev->sata_dev.class = sas_get_ata_command_set(dev);
        sas_fill_in_rphy(dev, dev->rphy);
 
-       res = sas_notify_lldd_dev_found(dev);
-       if (res)
-               return res;
-
-       return 0;
+       return sas_notify_lldd_dev_found(dev);
 }
 
 static void async_sas_ata_eh(void *data, async_cookie_t cookie)
 
  */
 int sas_discover_end_dev(struct domain_device *dev)
 {
-       int res;
-
-       res = sas_notify_lldd_dev_found(dev);
-       if (res)
-               return res;
-
-       return 0;
+       return sas_notify_lldd_dev_found(dev);
 }
 
 /* ---------- Device registration and unregistration ---------- */