[PATCH V3 2/4] staging: rtl8723bs: Remove empty block

From: Javier F. Arias
Date: Wed Nov 13 2019 - 09:53:34 EST


This patch removes an empty else block that produced an unbalanced
brace warning.
Issue found by Checkpatch.

Signed-off-by: Javier F. Arias <jarias.linux@xxxxxxxxx>
---
Changes in V3:
- Edit the commit message and description.
Changes in V2:
- Reduce the scope of the change given that the previous
patch had to perform some of these changes.

drivers/staging/rtl8723bs/core/rtw_xmit.c | 2 --
1 file changed, 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_xmit.c b/drivers/staging/rtl8723bs/core/rtw_xmit.c
index 44fc604ea5b7..5856c6e34922 100644
--- a/drivers/staging/rtl8723bs/core/rtw_xmit.c
+++ b/drivers/staging/rtl8723bs/core/rtw_xmit.c
@@ -1844,8 +1844,6 @@ s32 rtw_free_xmitframe(struct xmit_priv *pxmitpriv, struct xmit_frame *pxmitfram
queue = &pxmitpriv->free_xmit_queue;
else if (pxmitframe->ext_tag == 1)
queue = &pxmitpriv->free_xframe_ext_queue;
- else {
- }

spin_lock_bh(&queue->lock);

--
2.20.1