OSDN Git Service

staging: qca-wifi-host-cmn: fix build after disabling debug
authorAkhil Narang <akhilnarang.1999@gmail.com>
Sat, 15 Sep 2018 10:55:46 +0000 (16:25 +0530)
committerArian <arian.kulmer@web.de>
Tue, 19 Nov 2019 14:32:09 +0000 (15:32 +0100)
../drivers/staging/qcacld-3.0/../qca-wifi-host-cmn/qdf/linux/src/qdf_event.c:363:54: error: expected expression
                        "Failed to add event in the list in %s", __func__),
                                                                          ^
1 error generated.

Change-Id: I0412209ffdbbeabb87a289b96e47f9785f18d23c
Signed-off-by: Akhil Narang <akhilnarang.1999@gmail.com>
drivers/staging/qca-wifi-host-cmn/qdf/linux/src/qdf_event.c

index 8a88a74..edbfa05 100644 (file)
@@ -360,7 +360,7 @@ QDF_STATUS qdf_wait_for_event_completion(qdf_event_t *event, uint32_t timeout)
 
        if (QDF_STATUS_SUCCESS != status) {
                QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_ERROR,
-                       "Failed to add event in the list in %s", __func__),
+                       "Failed to add event in the list in %s", __func__);
                status = QDF_STATUS_E_FAULT;
                goto err_list_add;
        }