diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-04-01 18:07:05 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-04-01 18:07:05 +0000 |
| commit | c92b317966bfe8afee2cf20512bb1f28f6568e83 (patch) | |
| tree | 7ca0a5d80bea6a038296d7b4516af1da1f8acbec /sys | |
| parent | 8d6c171c25d75675e0c952a81bb3ada3767a0b93 (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/dev/wi/if_wi.c | 8 | ||||
| -rw-r--r-- | sys/dev/wi/if_wireg.h | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index 87d4855326db..c915e41a6152 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -669,12 +669,14 @@ wi_get_id(sc, dev) printf("RF:PRISM II MAC:HFA3841 CARD:HWB3163 rev.B"); break; case WI_NIC_EVB3: + case WI_NIC_3842: printf("RF:PRISM II MAC:HFA3842"); break; case WI_NIC_HWB1153: printf("RF:PRISM I MAC:HFA3841 CARD:HWB1153"); break; case WI_NIC_P2_SST: + case WI_NIC_EVB2_SST: printf("RF:PRISM II MAC:HFA3841 CARD:HWB3163-SST-flash"); break; case WI_NIC_PRISM2_5: @@ -686,6 +688,12 @@ wi_get_id(sc, dev) case WI_NIC_37300P: printf("RF:PRISM2.5 MAC:ISL37300P"); break; + case WI_P3_SST: + printf("RF:PRISM3"); + break; + case WI_P3_PCI: + printf("RF:PRISM3"); + break; case WI_NIC_LUCENT: case WI_NIC_LUCENT_ALT: printf("WaveLan/Lucent/Orinoco chip"); diff --git a/sys/dev/wi/if_wireg.h b/sys/dev/wi/if_wireg.h index 832ba0669333..75e7481f898f 100644 --- a/sys/dev/wi/if_wireg.h +++ b/sys/dev/wi/if_wireg.h @@ -519,9 +519,13 @@ struct wi_ltv_ver { #define WI_NIC_EVB3 0x8004 #define WI_NIC_HWB1153 0x8007 #define WI_NIC_P2_SST 0x8008 /* Prism2 with SST flush */ +#define WI_NIC_EVB2_SST 0x8009 +#define WI_NIC_3842 0x800A /* 3482 Evaluation Board */ #define WI_NIC_PRISM2_5 0x800C #define WI_NIC_3874A 0x8013 /* Prism2.5 Mini-PCI */ #define WI_NIC_37300P 0x801a +#define WI_NIC_P3_SST 0x801B /* Prism3 PCMCIA */ +#define WI_NIC_P3_PCI 0x8022 /* Prism3 Mini-PCI */ }; /* |
