diff options
author | Hartmut Brandt <harti@FreeBSD.org> | 2003-07-15 10:28:06 +0000 |
---|---|---|
committer | Hartmut Brandt <harti@FreeBSD.org> | 2003-07-15 10:28:06 +0000 |
commit | 21a023e9c8f1001c75e997c180e0109f74bbf949 (patch) | |
tree | a6bf54abe7866b93bed3c9afb7ccc90dacd97cb9 | |
parent | 918c6c0c7ef7ec64e28a3b4a97a81b2961832f31 (diff) | |
download | src-21a023e9c8f1001c75e997c180e0109f74bbf949.tar.gz src-21a023e9c8f1001c75e997c180e0109f74bbf949.zip |
Add identifiers for ProSum's and IDT's cards that are based on
the IDT77252 chip. The driver will follow soon.
Notes
Notes:
svn path=/head/; revision=117628
-rw-r--r-- | sys/net/if_atm.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/net/if_atm.h b/sys/net/if_atm.h index 9b7ad2c70bea..dc9fc6e4aedb 100644 --- a/sys/net/if_atm.h +++ b/sys/net/if_atm.h @@ -50,6 +50,10 @@ #define ATM_DEVICE_FORELE155 7 /* ForeRunnerLE 155 */ #define ATM_DEVICE_NICSTAR25 8 /* other 77211 25.6MBit */ #define ATM_DEVICE_NICSTAR155 9 /* other 77211 155MBit */ +#define ATM_DEVICE_IDTABR25 10 /* 77252 based card 25MBit */ +#define ATM_DEVICE_IDTABR155 11 /* 77252 based card 155MBit */ +#define ATM_DEVICE_PROATM25 10 /* 77252 based ProSum card 25MBit */ +#define ATM_DEVICE_PROATM155 11 /* 77252 based ProSum card 155MBit */ /* map to strings and vendors */ #define ATM_DEVICE_NAMES \ @@ -62,7 +66,11 @@ { "ForeRunnerLE25", "Fore/Marconi" }, \ { "ForeRunnerLE155", "Fore/Marconi" }, \ { "IDT77211/25", "IDT" }, \ - { "IDT77211/155", "IDT" }, + { "IDT77211/155", "IDT" }, \ + { "IDT77252/25", "IDT" }, \ + { "IDT77252/155", "IDT" }, \ + { "ProATM/25", "ProSum" }, \ + { "ProATM/155", "ProSum" }, /* * This is the common link layer MIB for all ATM interfaces. Much of the |