diff options
author | Dave Airlie <airlied@redhat.com> | 2012-06-18 13:02:03 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-06-18 13:02:03 +0100 |
commit | 6514bcdc0fc199b4f3a8b4273bd29e0fe255d232 (patch) | |
tree | 349a2959c8f1e68a783790bab7b3edebc6e86cc1 /src | |
parent | dd4ab5aba9047d522dbcfe8a341c368312e1a471 (diff) |
radeon: fix RADEONChipsets
reported on irc by okias.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src')
-rwxr-xr-x | src/pcidb/parse_pci_ids.pl | 2 | ||||
-rw-r--r-- | src/radeon_chipset_gen.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pcidb/parse_pci_ids.pl b/src/pcidb/parse_pci_ids.pl index 72fb4807..45009508 100755 --- a/src/pcidb/parse_pci_ids.pl +++ b/src/pcidb/parse_pci_ids.pl @@ -27,7 +27,7 @@ open (RADEONCHIPSET, ">", $radeonchipsetfile) or die; open (RADEONCHIPINFO, ">", $radeonchipinfofile) or die; print RADEONCHIPSET "/* This file is autogenerated please do not edit */\n"; -print RADEONCHIPSET "static SymTabRec RADEONChipsets[] = {\n"; +print RADEONCHIPSET "SymTabRec RADEONChipsets[] = {\n"; print PCICHIPSET "/* This file is autogenerated please do not edit */\n"; print PCICHIPSET "static PciChipsets RADEONPciChipsets[] = {\n"; print PCIDEVICEMATCH "/* This file is autogenerated please do not edit */\n"; diff --git a/src/radeon_chipset_gen.h b/src/radeon_chipset_gen.h index d2f61a06..31b31ab3 100644 --- a/src/radeon_chipset_gen.h +++ b/src/radeon_chipset_gen.h @@ -1,5 +1,5 @@ /* This file is autogenerated please do not edit */ -static SymTabRec RADEONChipsets[] = { +SymTabRec RADEONChipsets[] = { { PCI_CHIP_RV380_3150, "ATI Radeon Mobility X600 (M24) 3150 (PCIE)" }, { PCI_CHIP_RV380_3151, "ATI FireMV 2400 (PCI)" }, { PCI_CHIP_RV380_3152, "ATI Radeon Mobility X300 (M24) 3152 (PCIE)" }, |