mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 08:04:24 -04:00
staging: rtl8723au: rtl8723a_bt-coexist.c: Be consistent in use of BIT()
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
05f07e7d4d
commit
8952e08d4a
@@ -9530,7 +9530,8 @@ static void BTDM_Display8723ABtCoexInfo(struct rtw_adapter *padapter)
|
||||
|
||||
btInfoExt = pHalData->bt_coexist.halCoex8723.btInfoExt;
|
||||
rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s", "A2DP rate", \
|
||||
(btInfoExt&BIT0) ? "Basic rate" : "EDR rate");
|
||||
(btInfoExt & BIT(0)) ?
|
||||
"Basic rate" : "EDR rate");
|
||||
DCMD_Printf(btCoexDbgBuf);
|
||||
} else {
|
||||
rsprintf(btCoexDbgBuf, BT_TMP_BUF_SIZE, "\r\n %-35s = %s/ %s", "Bt link type/spec", \
|
||||
|
||||
Reference in New Issue
Block a user