Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03d4173b authored by Yue Ma's avatar Yue Ma Committed by snandini
Browse files

qcacmn: Change to use QDF_ASSERT for hif_pci_runtime_pm_warn()

For uncritical situations when calling hif_pci_runtime_pm_warn(),
it is not necessary to always panic so changing to use QDF_ASSERT()
instead of QDF_DEBUG_PANIC().

Change-Id: Ia527574bc1bc5359cbbb259cab0803110fc5da4d
CRs-fixed: 2732131
parent 2275b7ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -992,7 +992,7 @@ static void hif_pci_runtime_pm_warn(struct hif_pci_softc *sc, const char *msg)
		return;
	}

	QDF_DEBUG_PANIC("hif_pci_runtime_pm_warn");
	QDF_ASSERT(0);
}

/**