staging: rtl8723bs: remove a couple of redundant initializations
authorColin Ian King <colin.king@canonical.com>
Fri, 26 Jan 2018 11:54:14 +0000 (11:54 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Jan 2018 14:08:43 +0000 (15:08 +0100)
commitc5f69117526e520c14f272ac37527b20d3688123
tree42110477a3f0e11d20fead1131943192ca9f3932
parent26311087d1c597770178b0304ecd02d3d5cd0faf
staging: rtl8723bs: remove a couple of redundant initializations

The initialization of PwrCfgCmd is redundant as the value is never read
and it is being re-assigned to PwrSeqCmd[AryIdx] inside a loop, hence
it can be removed.  Also, the initialization of ie_ptr is redundant as
the value is never read and it is being re-assigned in either path of
an if statement, hence it can be removed too.

Cleans up clang warnings:
drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.c:53:15: warning: Value
stored to 'PwrCfgCmd' during its initialization is never read
drivers/staging/rtl8723bs/os_dep/ioctl_linux.c:374:7: warning: Value
stored to 'ie_ptr' during its initialization is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.c
drivers/staging/rtl8723bs/os_dep/ioctl_linux.c