Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98834
b: refs/heads/master
c: 814feef
h: refs/heads/master
v: v3
  • Loading branch information
Ihar Hrachyshka authored and John W. Linville committed Jul 9, 2008
1 parent ed2de9c commit f20b6f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 86229f0c7b4e065f51b5572a8a61801e281740a0
refs/heads/master: 814feefa859a736d29d0700d49debf13904b429f
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/libertas/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f20b6f9

Please sign in to comment.