[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20100210091506.4ea59c67@nehalam>
Date: Wed, 10 Feb 2010 09:15:06 -0800
From: Stephen Hemminger <shemminger@...tta.com>
To: Rasesh Mody <rmody@...cade.com>
Cc: netdev@...r.kernel.org, adapter_linux_open_src_team@...cade.com
Subject: Re: Subject: [PATCH 1/6] bna: Brocade 10Gb Ethernet device driver
On Tue, 9 Feb 2010 22:29:15 -0800
Rasesh Mody <rmody@...cade.com> wrote:
> +static struct pci_device_id bnad_pci_id_table[] = {
> + {
> + .vendor = PCI_VENDOR_ID_BROCADE,
> + .device = PCI_DEVICE_ID_BROCADE_CATAPULT,
> + .subvendor = PCI_ANY_ID,
> + .subdevice = PCI_ANY_ID,
> + .class = PCI_CLASS_NETWORK_ETHERNET << 8,
> + .class_mask = 0xffff00},
> + {0, 0}
> +};
> +
> +MODULE_DEVICE_TABLE(pci, bnad_pci_id_table
Use:
static DEFINE_PCI_DEVICE_TABLE(bnad_pci_id_table) = {
not sure if you require class/class_mask or can use
PCI_VDEVICE(BROCADE, PCI_DEVICE_ID_BROCADE_CATAPLUT)
--
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists