Messages in this thread |  | | From | Keith Owens <> | Subject | Re: Patch(?): pci_device_id tables for linux-2.4.0-test11/drivers/block | Date | Thu, 23 Nov 2000 09:36:08 +1100 |
| |
On Wed, 22 Nov 2000 14:01:36 -0800, "Adam J. Richter" <adam@yggdrasil.com> wrote: > Just to avoid duplication of effort, I am posting this preliminary >patch which adds PCI MODULE_DEVICE_TABLE declarations to the three PCI >drivers in linux-2.4.0-test11/drivers/block. In response to input from >Christoph Hellwig, I have reduced my threshhold on using named initializers >to three entries, although I think that may be going to far, as I would >really like to keep the number of files that initialize the pci_device_id >arrays this way low so that changing struct pci_device_id remains feasible.
No need for named initializers. Always add any new fields in struct pci_device_id at the end. It does matter if you use named or unnamed initializers, the new fields will be zero on all existing declarations. Introducing new fields in the middle of pci_device_id introduces version skew problems for modutils and all code that reads modules.pcimap.
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |