summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8192ee
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-05-27 15:25:47 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-27 11:55:29 -0700
commitbc25d1974e5f3fe49eedf8ef276c8b751ad04580 (patch)
treef474bb68dadf65d119e1c07d555fb6f438ae1b65 /drivers/staging/rtl8192ee
parent735e33fa32d56e58dccb8406281efb2fff419f23 (diff)
staging: rtl8192ee: Fix build error
Fixes the followign build error: drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c:1387:6: error: called object is not a function or function pointer ("[BTCoex], Wifi non connected-idle + BT Busy!!\n")); Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192ee')
-rw-r--r--drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c b/drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c
index d561c54524b7..153048f6b4de 100644
--- a/drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c
+++ b/drivers/staging/rtl8192ee/btcoexist/halbtc8723b1ant.c
@@ -1384,7 +1384,7 @@ static bool halbtc8723b1ant_is_common_action(struct btc_coexist *btcoexist)
(BT_8723B_1ANT_BT_STATUS_CONNECTED_IDLE !=
coex_dm->bt_status)) {
BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE,
- ("[BTCoex], Wifi non connected-idle + BT Busy!!\n"));
+ "[BTCoex], Wifi non connected-idle + BT Busy!!\n");
halbtc8723b1ant_sw_mechanism(btcoexist, false);
commom = true;
} else {