Commit d95e2fe0 authored by Michael Grzeschik's avatar Michael Grzeschik Committed by David S. Miller

com20020-pci: add support for eae single card

Signed-off-by: default avatarMichael Grzeschik <m.grzeschik@pengutronix.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0960b641
...@@ -214,8 +214,17 @@ static struct com20020_pci_card_info card_info_sohard = { ...@@ -214,8 +214,17 @@ static struct com20020_pci_card_info card_info_sohard = {
.flags = ARC_CAN_10MBIT, .flags = ARC_CAN_10MBIT,
}; };
static struct com20020_pci_card_info card_info_eae = { static struct com20020_pci_card_info card_info_eae_arc1 = {
.name = "EAE PLX-PCI", .name = "EAE PLX-PCI ARC1",
.devcount = 1,
.chan_map_tbl = {
{ 2, 0x00, 0x08 },
},
.flags = ARC_CAN_10MBIT,
};
static struct com20020_pci_card_info card_info_eae_ma1 = {
.name = "EAE PLX-PCI MA1",
.devcount = 2, .devcount = 2,
.chan_map_tbl = { .chan_map_tbl = {
{ 2, 0x00, 0x08 }, { 2, 0x00, 0x08 },
...@@ -357,11 +366,17 @@ static const struct pci_device_id com20020pci_id_table[] = { ...@@ -357,11 +366,17 @@ static const struct pci_device_id com20020pci_id_table[] = {
0, 0, 0, 0,
(kernel_ulong_t)&card_info_sohard (kernel_ulong_t)&card_info_sohard
}, },
{
0x10B5, 0x9050,
0x10B5, 0x3263,
0, 0,
(kernel_ulong_t)&card_info_eae_arc1
},
{ {
0x10B5, 0x9050, 0x10B5, 0x9050,
0x10B5, 0x3292, 0x10B5, 0x3292,
0, 0, 0, 0,
(kernel_ulong_t)&card_info_eae (kernel_ulong_t)&card_info_eae_ma1
}, },
{ {
0x14BA, 0x6000, 0x14BA, 0x6000,
......
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