Browse Source

qcacmn: introduce dummy hif_ahb_configure_irq

When AHB is not compiled in, hif_ahb_configure_irq needs a dummy
implementation for compilation.

Change-Id: I782ffed7d01b3de84bab61140dd4158768bb30a3
CRs-Fixed: 1072078
Houston Hoffman 8 years ago
parent
commit
471e9a05e9
1 changed files with 6 additions and 0 deletions
  1. 6 0
      hif/src/pcie/if_pci.c

+ 6 - 0
hif/src/pcie/if_pci.c

@@ -3368,6 +3368,12 @@ int hif_ahb_configure_legacy_irq(struct hif_pci_softc *sc)
 	QDF_BUG(0);
 	return -EINVAL;
 }
+
+int hif_ahb_configure_irq(struct hif_pci_softc *sc)
+{
+	QDF_BUG(0);
+	return -EINVAL;
+}
 #endif
 
 /**