[PATCH] staging: rtl8188eu: hal: rtl8188e_cmd: Removed variables that is never used

From: Rickard Strandqvist
Date: Sat Jan 31 2015 - 09:43:16 EST


Variable was assigned a value that was never used.
I have also removed all the code that thereby serves no purpose.

This was found using a static code analysis program called cppcheck

Signed-off-by: Rickard Strandqvist <rickard_strandqvist@xxxxxxxxxxxxxxxxxx>
---
drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c b/drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c
index 7f30dea..ece7e76 100644
--- a/drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c
+++ b/drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c
@@ -172,7 +172,7 @@ void rtl8188e_Add_RateATid(struct adapter *pAdapter, u32 bitmap, u8 arg, u8 rssi
{
struct hal_data_8188e *haldata = GET_HAL_DATA(pAdapter);

- u8 macid, init_rate, raid, shortGIrate = false;
+ u8 macid, raid, shortGIrate = false;

macid = arg&0x1f;

@@ -184,13 +184,8 @@ void rtl8188e_Add_RateATid(struct adapter *pAdapter, u32 bitmap, u8 arg, u8 rssi

bitmap |= ((raid<<28)&0xf0000000);

- init_rate = get_highest_rate_idx(bitmap&0x0fffffff)&0x3f;
-
shortGIrate = (arg&BIT(5)) ? true : false;

- if (shortGIrate)
- init_rate |= BIT(6);
-
raid = (bitmap>>28) & 0x0f;

bitmap &= 0x0fffffff;
--
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/