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

Commit 814feefa authored by Ihar Hrachyshka's avatar Ihar Hrachyshka Committed by John W. Linville
Browse files

libertas: fix memory alignment problems on the blackfin



Fixing unaligned memory access on the blackfin architecture.

Signed-off-by: default avatarIhar Hrachyshka <ihar.hrachyshka@promwad.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 86229f0c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -567,11 +567,11 @@ static int lbs_process_bss(struct bss_descriptor *bss,
	pos += 8;

	/* beacon interval is 2 bytes long */
	bss->beaconperiod = le16_to_cpup((void *) pos);
	bss->beaconperiod = get_unaligned_le16(pos);
	pos += 2;

	/* capability information is 2 bytes long */
	bss->capability = le16_to_cpup((void *) pos);
	bss->capability = get_unaligned_le16(pos);
	lbs_deb_scan("process_bss: capabilities 0x%04x\n", bss->capability);
	pos += 2;