Skip to content

Commit 5b85bad

Browse files
mgrzeschikdavem330
authored andcommitted
ARCNET: enable eae arcnet card support
This patch adds support for the EAE arcnet cards which has two Interfaces. Signed-off-by: Michael Grzeschik <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent c51da42 commit 5b85bad

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

drivers/net/arcnet/com20020-pci.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,16 @@ static struct com20020_pci_card_info card_info_sohard = {
211211
.flags = ARC_CAN_10MBIT,
212212
};
213213

214+
static struct com20020_pci_card_info card_info_eae = {
215+
.name = "EAE PLX-PCI",
216+
.devcount = 2,
217+
.chan_map_tbl = {
218+
{ 2, 0x00, 0x08 },
219+
{ 2, 0x08, 0x08 }
220+
},
221+
.flags = ARC_CAN_10MBIT,
222+
};
223+
214224
static const struct pci_device_id com20020pci_id_table[] = {
215225
{
216226
0x1571, 0xa001,
@@ -344,6 +354,12 @@ static const struct pci_device_id com20020pci_id_table[] = {
344354
0, 0,
345355
(kernel_ulong_t)&card_info_sohard
346356
},
357+
{
358+
0x10B5, 0x9050,
359+
0x10B5, 0x3292,
360+
0, 0,
361+
(kernel_ulong_t)&card_info_eae
362+
},
347363
{
348364
0x14BA, 0x6000,
349365
PCI_ANY_ID, PCI_ANY_ID,

0 commit comments

Comments
 (0)