On Sunday 01 August 2010 18:17:16 David Cozatt wrote: > Accessing http://wireless.kernel.org/en/users/Drivers/p54 shows in unsupported > > * early PrismGT cards (e.g.: Netgear WG511v1, SMC 2802W) > > phy0: hwaddr 00:04:e2:63:c2:67, MAC:isl3890 RF:Duette3 > > [...] > > Mine is the -164 version. Anything else needed to confirm working properly? No, but it would be great if we could have a copy of that EEPROM. I've attached inline-patch that will dump its content to the console via kernel messaging system. If you are not entirely familiar with the procedure, then let me know (off-list), I'm sure we can work that out. Regards, Christian --- diff --git a/drivers/net/wireless/p54/eeprom.c b/drivers/net/wireless/p54/eeprom.c index d687cb7..84eb993 100644 --- a/drivers/net/wireless/p54/eeprom.c +++ b/drivers/net/wireless/p54/eeprom.c @@ -544,6 +544,8 @@ int p54_parse_eeprom(struct ieee80211_hw *dev, void *eeprom, int len) wrap = (struct eeprom_pda_wrap *) eeprom; entry = (void *)wrap->data + le16_to_cpu(wrap->len); + print_hex_dump_bytes("P54E:", DUMP_PREFIX_OFFSET, eeprom, len); + /* verify that at least the entry length/code fits */ while ((u8 *)entry <= end - sizeof(*entry)) { entry_len = le16_to_cpu(entry->len); -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html