Re: [patch] use C99 initialisers for PCI_VDEVICE()

2007-04-15 Thread Ulrich Eckhardt
On Sunday 15 April 2007 14:53, Jeff Garzik wrote: > Ulrich Eckhardt wrote: > > (Note: CC me please, I'm not subscribed.) [...] > > -#define PCI_VDEVICE(vendor, device)\ > > - PCI_VENDOR_ID_##vendor, (device), \ > > - PCI_ANY_ID, PC

[patch] use C99 initialisers for PCI_VDEVICE()

2007-04-15 Thread Ulrich Eckhardt
(Note: CC me please, I'm not subscribed.) Not much to say about the patch (it's against 2.6.20.6), it just converts a macro to generate C99-style initialisers. --- include/linux/pci.h (revision 17) +++ include/linux/pci.h (working copy) @@ -407,9 +407,10 @@ * private data. */ -#define

[patch] use C99 initialisers for PCI_VDEVICE()

2007-04-15 Thread Ulrich Eckhardt
(Note: CC me please, I'm not subscribed.) Not much to say about the patch (it's against 2.6.20.6), it just converts a macro to generate C99-style initialisers. --- include/linux/pci.h (revision 17) +++ include/linux/pci.h (working copy) @@ -407,9 +407,10 @@ * private data. */ -#define

Re: [patch] use C99 initialisers for PCI_VDEVICE()

2007-04-15 Thread Ulrich Eckhardt
On Sunday 15 April 2007 14:53, Jeff Garzik wrote: Ulrich Eckhardt wrote: (Note: CC me please, I'm not subscribed.) [...] -#define PCI_VDEVICE(vendor, device)\ - PCI_VENDOR_ID_##vendor, (device), \ - PCI_ANY_ID, PCI_ANY_ID, 0, 0 +#define PCI_VDEVICE(vend