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

Commit 71a301bb authored by Eliad Peller's avatar Eliad Peller Committed by John W. Linville
Browse files

wlcore: use correct LAA bit



The LAA bit is second bit of the MSB, not of the
third byte.

Signed-off-by: default avatarEliad Peller <eliad@wizery.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 601d6c4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5661,7 +5661,7 @@ static void wl12xx_derive_mac_addresses(struct wl1271 *wl, u32 oui, u32 nic)
		memcpy(&wl->addresses[idx], &wl->addresses[0],
		       sizeof(wl->addresses[0]));
		/* LAA bit */
		wl->addresses[idx].addr[2] |= BIT(1);
		wl->addresses[idx].addr[0] |= BIT(1);
	}

	wl->hw->wiphy->n_addresses = WLCORE_NUM_MAC_ADDRESSES;