50 lines
1.6 KiB
Diff
50 lines
1.6 KiB
Diff
From: Arturo Buzarra <arturo.buzarra@digi.com>
|
|
Date: Tue, 17 May 2022 15:50:32 +0200
|
|
Subject: [PATCH] qca-wifi-host-cmn: fix build issue enabling debug for SDIO
|
|
interface
|
|
|
|
Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
|
|
---
|
|
hif/src/sdio/native_sdio/src/dev_quirks.c | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/hif/src/sdio/native_sdio/src/dev_quirks.c b/hif/src/sdio/native_sdio/src/dev_quirks.c
|
|
index a94ec61d0b62..b5e70a51ddcf 100644
|
|
--- a/hif/src/sdio/native_sdio/src/dev_quirks.c
|
|
+++ b/hif/src/sdio/native_sdio/src/dev_quirks.c
|
|
@@ -267,8 +267,9 @@ void hif_sdio_quirk_write_cccr(struct hif_softc *ol_sc, struct sdio_func *func)
|
|
err);
|
|
else
|
|
hif_info("%s Write CCCR 0x%02X to 0x%02X OK",
|
|
+ __func__,
|
|
(unsigned int)writecccr1,
|
|
- writecccr1value);
|
|
+ (unsigned int)writecccr1value);
|
|
}
|
|
|
|
if (writecccr2) {
|
|
@@ -281,6 +282,7 @@ void hif_sdio_quirk_write_cccr(struct hif_softc *ol_sc, struct sdio_func *func)
|
|
err);
|
|
else
|
|
hif_info("%s Write CCCR 0x%02X to 0x%02X OK",
|
|
+ __func__,
|
|
(unsigned int)writecccr2,
|
|
(unsigned int)writecccr2value);
|
|
}
|
|
@@ -294,6 +296,7 @@ void hif_sdio_quirk_write_cccr(struct hif_softc *ol_sc, struct sdio_func *func)
|
|
err);
|
|
else
|
|
hif_info("%s Write CCCR 0x%02X to 0x%02X OK",
|
|
+ __func__,
|
|
(unsigned int)writecccr3,
|
|
(unsigned int)writecccr3value);
|
|
}
|
|
@@ -307,6 +310,7 @@ void hif_sdio_quirk_write_cccr(struct hif_softc *ol_sc, struct sdio_func *func)
|
|
err);
|
|
else
|
|
hif_info("%s Write CCCR 0x%02X to 0x%02X OK",
|
|
+ __func__,
|
|
(unsigned int)writecccr4,
|
|
(unsigned int)writecccr4value);
|
|
}
|