Bläddra i källkod

qcacmn: Remove references to cnss_pm_runtime_request

cnss_pm_runtime_request is deprecated.

Change-Id: I620065d8d0eae6a6830eeb003a29575c5352cb93
CRs-Fixed: 1035562
Houston Hoffman 8 år sedan
förälder
incheckning
c2611a2c80
2 ändrade filer med 2 tillägg och 26 borttagningar
  1. 1 1
      hif/src/pcie/if_pci.c
  2. 1 25
      hif/src/pcie/if_pci.h

+ 1 - 1
hif/src/pcie/if_pci.c

@@ -1154,7 +1154,7 @@ static void hif_pm_runtime_stop(struct hif_pci_softc *sc)
 		return;
 
 	cnss_runtime_exit(sc->dev);
-	cnss_pm_runtime_request(sc->dev, CNSS_PM_RUNTIME_RESUME);
+	hif_pm_runtime_resume(sc->dev);
 
 	qdf_atomic_set(&sc->pm_state, HIF_PM_RUNTIME_STATE_NONE);
 

+ 1 - 25
hif/src/pcie/if_pci.h

@@ -215,31 +215,7 @@ static inline int hif_pm_runtime_resume(struct device *dev)
 {
 	return pm_runtime_resume(dev);
 }
-#else
-static inline int hif_pm_request_resume(struct device *dev)
-{
-	return cnss_pm_runtime_request(dev, CNSS_PM_REQUEST_RESUME);
-}
-
-static inline int __hif_pm_runtime_get(struct device *dev)
-{
-	return cnss_pm_runtime_request(dev, CNSS_PM_RUNTIME_GET);
-}
-
-static inline int hif_pm_runtime_put_auto(struct device *dev)
-{
-	return cnss_pm_runtime_request(dev, CNSS_PM_RUNTIME_PUT_AUTO);
-}
-
-static inline void hif_pm_runtime_mark_last_busy(struct device *dev)
-{
-	cnss_pm_runtime_request(dev, CNSS_PM_RUNTIME_MARK_LAST_BUSY);
-}
-static inline int hif_pm_runtime_resume(struct device *dev)
-{
-	return cnss_pm_runtime_request(dev, CNSS_PM_RUNTIME_RESUME);
-}
-#endif /* WLAN_OPEN_SOURCE */
+#endif
 #else
 static inline void hif_pm_runtime_mark_last_busy(struct device *dev) { }
 #endif /* FEATURE_RUNTIME_PM */