Commit 8c28293f authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

p54: fix EEPROM structure endianness

Since the EEPROM structure is read from hardware, it is
always little endian, annotate that in the struct and
make sure to convert where applicable.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Cc: Michael Wu <flamingice@sourmilk.net>
Tested-by: default avatarFlorian Fainelli <florian.fainelli@telecomint.eu>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent dc63644b
...@@ -172,7 +172,7 @@ int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len) ...@@ -172,7 +172,7 @@ int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len)
int err; int err;
wrap = (struct eeprom_pda_wrap *) eeprom; wrap = (struct eeprom_pda_wrap *) eeprom;
entry = (void *)wrap->data + wrap->len; entry = (void *)wrap->data + le16_to_cpu(wrap->len);
i += 2; i += 2;
i += le16_to_cpu(entry->len)*2; i += le16_to_cpu(entry->len)*2;
while (i < len) { while (i < len) {
......
...@@ -53,10 +53,10 @@ struct pda_entry { ...@@ -53,10 +53,10 @@ struct pda_entry {
} __attribute__ ((packed)); } __attribute__ ((packed));
struct eeprom_pda_wrap { struct eeprom_pda_wrap {
u32 magic; __le32 magic;
u16 pad; __le16 pad;
u16 len; __le16 len;
u32 arm_opcode; __le32 arm_opcode;
u8 data[0]; u8 data[0];
} __attribute__ ((packed)); } __attribute__ ((packed));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment