summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHsiu-Chang Chen <hsiuchangchen@google.com>2023-03-31 14:53:16 +0800
committerHsiu-Chang Chen <hsiuchangchen@google.com>2023-04-07 04:22:33 +0000
commit2594720d48f6c7b0e0caa90c147c5b22fc18b748 (patch)
tree7164156ee87a32ec065b387ca0bc2097b57e5c6c
parentadcf51862ac43461e22d23f0d5454514c0b6d013 (diff)
downloadcnss2-2594720d48f6c7b0e0caa90c147c5b22fc18b748.tar.gz
cnss: add debug log to indicate request_firmware
Bug: 275229171 Test: Build pass Change-Id: I0a5aa4cc0a2945cbd0a6b9e1c28a1fda7589fa17
-rw-r--r--mhi/core/boot.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mhi/core/boot.c b/mhi/core/boot.c
index 83d989e..e7f8292 100644
--- a/mhi/core/boot.c
+++ b/mhi/core/boot.c
@@ -501,6 +501,9 @@ void mhi_fw_load_handler(struct mhi_controller *mhi_cntrl)
goto error_fw_load;
}
+#ifdef CONFIG_WCN_GOOGLE
+ MHI_LOG("request_firmware: %s", fw_name);
+#endif
ret = request_firmware(&firmware, fw_name, dev->parent);
if (ret) {
if (!mhi_cntrl->fallback_fw_image) {