mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 00:42:56 -04:00
Staging: rtl8188eu: Move variable assignment
Variable path_on is assigned explicitly in the if branch and so its assignment outside can be moved to the else branch. Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
dacd2eced5
commit
179e7dcde4
@@ -941,11 +941,11 @@ static void path_adda_on(struct adapter *adapt, u32 *adda_reg,
|
||||
u32 path_on;
|
||||
u32 i;
|
||||
|
||||
path_on = is_path_a_on ? 0x04db25a4 : 0x0b1b25a4;
|
||||
if (!is2t) {
|
||||
path_on = 0x0bdb25a0;
|
||||
phy_set_bb_reg(adapt, adda_reg[0], bMaskDWord, 0x0b1b25a0);
|
||||
} else {
|
||||
path_on = is_path_a_on ? 0x04db25a4 : 0x0b1b25a4;
|
||||
phy_set_bb_reg(adapt, adda_reg[0], bMaskDWord, path_on);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user