qcacld-3.0: Provide reason to QDF_DEBUG_PANIC()

A common pattern in WLAN to panic the driver is to log the reason and
then unconditionally panic. QDF_DEBUG_PANIC() takes a reason string to
help make the reason for the panic more obvious, but it is not always
used. Ensure all callers of QDF_DEBUG_PANIC() provide a reason string.

Change-Id: I3d23a8980adaeaa1a9798a4a6b0fba1f36eb52ad
CRs-Fixed: 2403829
このコミットが含まれているのは:
Dustin Brown
2019-02-22 10:52:33 -08:00
committed by nshrivas
コミット 207286b118
2個のファイルの変更5行の追加6行の削除

ファイルの表示

@@ -51,7 +51,7 @@ static struct dsc_psoc *nth_psoc(struct dsc_driver *driver, int n)
return psoc;
}
QDF_DEBUG_PANIC();
QDF_DEBUG_PANIC("Failed to find nth psoc: %d", n);
return NULL;
}
@@ -72,7 +72,7 @@ static struct dsc_vdev *nth_vdev(struct dsc_psoc *psoc, int n)
return vdev;
}
QDF_DEBUG_PANIC();
QDF_DEBUG_PANIC("Failed to find nth vdev: %d", n);
return NULL;
}