OSDN Git Service

staging: r8188eu: remove useless assignment
authorMichael Straube <straube.linux@gmail.com>
Mon, 6 Sep 2021 19:02:14 +0000 (21:02 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Sep 2021 06:49:52 +0000 (08:49 +0200)
The local variable badworden is set to a new value immediately after
an assignment. Remove the useless assignment and initialization.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210906190223.11396-32-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/r8188eu/hal/rtl8188e_hal_init.c

index eb30a6f..33d4e53 100644 (file)
@@ -1438,10 +1438,9 @@ static bool hal_EfusePgPacketWrite1ByteHeader(struct adapter *pAdapter, u8 efuse
 static bool hal_EfusePgPacketWriteData(struct adapter *pAdapter, u8 efuseType, u16 *pAddr, struct pgpkt *pTargetPkt, bool bPseudoTest)
 {
        u16     efuse_addr = *pAddr;
-       u8 badworden = 0;
+       u8 badworden;
        u32     PgWriteSuccess = 0;
 
-       badworden = 0x0f;
        badworden = rtl8188e_Efuse_WordEnableDataWrite(pAdapter, efuse_addr + 1, pTargetPkt->word_en, pTargetPkt->data, bPseudoTest);
        if (badworden == 0x0F) {
                /*  write ok */