return deferred;
 }
 
-int sas_notify_port_event(struct asd_sas_phy *phy, enum port_event event,
-                         gfp_t gfp_flags)
+void sas_notify_port_event(struct asd_sas_phy *phy, enum port_event event,
+                          gfp_t gfp_flags)
 {
        struct sas_ha_struct *ha = phy->ha;
        struct asd_sas_event *ev;
 
        ev = sas_alloc_event(phy, gfp_flags);
        if (!ev)
-               return -ENOMEM;
+               return;
 
        /* Call pm_runtime_put() with pairs in sas_port_event_worker() */
        pm_runtime_get_noresume(ha->dev);
        INIT_SAS_EVENT(ev, sas_port_event_worker, phy, event);
 
        if (sas_defer_event(phy, ev))
-               return 0;
+               return;
 
        ret = sas_queue_event(event, &ev->work, ha);
        if (ret != 1) {
                pm_runtime_put(ha->dev);
                sas_free_event(ev);
        }
-
-       return ret;
 }
 EXPORT_SYMBOL_GPL(sas_notify_port_event);
 
-int sas_notify_phy_event(struct asd_sas_phy *phy, enum phy_event event,
-                        gfp_t gfp_flags)
+void sas_notify_phy_event(struct asd_sas_phy *phy, enum phy_event event,
+                         gfp_t gfp_flags)
 {
        struct sas_ha_struct *ha = phy->ha;
        struct asd_sas_event *ev;
 
        ev = sas_alloc_event(phy, gfp_flags);
        if (!ev)
-               return -ENOMEM;
+               return;
 
        /* Call pm_runtime_put() with pairs in sas_phy_event_worker() */
        pm_runtime_get_noresume(ha->dev);
        INIT_SAS_EVENT(ev, sas_phy_event_worker, phy, event);
 
        if (sas_defer_event(phy, ev))
-               return 0;
+               return;
 
        ret = sas_queue_event(event, &ev->work, ha);
        if (ret != 1) {
                pm_runtime_put(ha->dev);
                sas_free_event(ev);
        }
-
-       return ret;
 }
 EXPORT_SYMBOL_GPL(sas_notify_phy_event);
 
                        enum phy_func phy_func, struct sas_phy_linkrates *);
 int sas_smp_get_phy_events(struct sas_phy *phy);
 
-int sas_notify_phy_event(struct asd_sas_phy *phy, enum phy_event event,
-                        gfp_t flags);
 void sas_device_set_phy(struct domain_device *dev, struct sas_port *port);
 struct domain_device *sas_find_dev_by_rphy(struct sas_rphy *rphy);
 struct domain_device *sas_ex_to_ata(struct domain_device *ex_dev, int phy_id);
 
 int sas_query_task(struct sas_task *task, u16 tag);
 int sas_abort_task(struct sas_task *task, u16 tag);
 
-int sas_notify_port_event(struct asd_sas_phy *phy, enum port_event event,
-                         gfp_t gfp_flags);
-int sas_notify_phy_event(struct asd_sas_phy *phy, enum phy_event event,
-                        gfp_t gfp_flags);
+void sas_notify_port_event(struct asd_sas_phy *phy, enum port_event event,
+                          gfp_t gfp_flags);
+void sas_notify_phy_event(struct asd_sas_phy *phy, enum phy_event event,
+                          gfp_t gfp_flags);
 
 #endif /* _SASLIB_H_ */