Browse Source

qcacmn: fix the runtime pm feature compilation error

Add missing semicolon in variable declaration.

CRs-Fixed: 1107859
Change-Id: If1c4841345eb0e5060dc4db71ce22ff139ec5015
Sarada Prasanna Garnayak 8 years ago
parent
commit
580f1c4ddf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hif/src/pcie/if_pci.c

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

@@ -3090,7 +3090,7 @@ void hif_process_runtime_resume_success(struct hif_opaque_softc *hif_ctx)
 int hif_runtime_suspend(struct hif_opaque_softc *hif_ctx)
 {
 	struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
-	struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(scn)
+	struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(scn);
 	int err;
 
 	err = hif_pci_bus_suspend(scn);
@@ -3161,7 +3161,7 @@ static void hif_fastpath_resume(struct hif_opaque_softc *hif_ctx) {}
 int hif_runtime_resume(struct hif_opaque_softc *hif_ctx)
 {
 	struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
-	struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(scn)
+	struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(scn);
 	int err;
 
 	err = hif_pci_bus_resume_noirq(scn);