[pci] Add driver_data field to struct pci_device_id

Modified-by: Michael Brown <mcb30@etherboot.org>
Signed-off-by: Michael Brown <mcb30@etherboot.org>
This commit is contained in:
Thomas Miletich
2009-03-26 10:19:03 +00:00
committed by Michael Brown
parent 87b494bbab
commit 3da6f1c7bd
39 changed files with 335 additions and 331 deletions
+2 -1
View File
@@ -45,7 +45,8 @@ while ( <DRV> ) {
\s*0x([0-9A-Fa-f]{4})\s*, # PCI vendor
\s*0x([0-9A-Fa-f]{4})\s*, # PCI device
\s*\"([^\"]*)\"\s*, # Image
\s*\"([^\"]*)\"\s* # Description
\s*\"([^\"]*)\"\s*, # Description
\s*.*\s* # Driver data
\)/x ) {
( my $vendor, my $device, my $image, my $desc ) = ( lc $1, lc $2, $3, $4 );
rom ( "pci", $image, $desc, $vendor, $device );