Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d44517f2 authored by Gábor Stefanik's avatar Gábor Stefanik Committed by John W. Linville
Browse files

b43: Fix a typo in the sync_stx routine



I completely missed the "one's complement" instruction from the specs.

Signed-off-by: default avatarGábor Stefanik <netrolller.3d@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f679056b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -497,7 +497,7 @@ static void lpphy_sync_stx(struct b43_wldev *dev)
		tmp >>= e->rf_shift;
		tmp <<= e->phy_shift;
		b43_phy_maskset(dev, B43_PHY_OFDM(0xF2 + e->phy_offset),
				e->mask << e->phy_shift, tmp);
				~(e->mask << e->phy_shift), tmp);
	}
}