Parcourir la source

qcacmn: Fix compilation error caused by hif_enable_power_management

hif_enable_power_management is only defiend for PCI devices which is
causing compilation error for SNOC devices. Define empty definition of
hif_enable_power_management for SNOC devices

Change-Id: If6a4de93d18e8c5ca2a67f43a0eae69e781efa68
CRs-Fixed: 978802
Rajeev Kumar il y a 9 ans
Parent
commit
cbbd7b2ee9
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 10 0
      hif/src/snoc/if_snoc.c

+ 10 - 0
hif/src/snoc/if_snoc.c

@@ -285,3 +285,13 @@ void hif_snoc_irq_disable(struct hif_softc *scn, int ce_id)
 	ce_clear_irq_group_status(scn, 1<<ce_id);
 	ce_disable_irq_in_individual_register(scn, ce_id);
 }
+
+/**
+ * hif_enable_power_management(): enable power management
+ * @hif_ctx: hif context
+ *
+ * Dummy place holder implementation for SNOC
+ */
+void hif_enable_power_management(void *hif_ctx)
+{
+}