diff options
author | Tormod Volden <debian.tormod@gmail.com> | 2011-10-29 23:08:46 +0200 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2011-10-31 08:39:30 -0400 |
commit | d3d6a5da07aaec5961e51c9a8f90c1490ee101b6 (patch) | |
tree | ffc67bee400224253ef11996139d2ac7ace4404a | |
parent | 70da7001e81363ed6ef2c4727c512daf53ae29fe (diff) |
radeon: do not include xf86PciInfo.h
We already use atipciids.h instead most places.
Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
-rw-r--r-- | src/ati.c | 1 | ||||
-rw-r--r-- | src/ati.h | 1 | ||||
-rw-r--r-- | src/atipciids.h | 1 | ||||
-rw-r--r-- | src/radeon_bios.c | 2 | ||||
-rw-r--r-- | src/radeon_dri.c | 1 |
5 files changed, 3 insertions, 3 deletions
@@ -63,6 +63,7 @@ #include "atipcirename.h" #include "ati.h" +#include "atipciids.h" #include "ativersion.h" /* names duplicated from version headers */ @@ -26,7 +26,6 @@ #include <unistd.h> #include <stdint.h> #include "xf86Pci.h" -#include "xf86PciInfo.h" #include "xf86.h" diff --git a/src/atipciids.h b/src/atipciids.h index 5f66aa0c..04b59600 100644 --- a/src/atipciids.h +++ b/src/atipciids.h @@ -44,6 +44,7 @@ #ifndef PCI_VENDOR_HP #define PCI_VENDOR_HP 0x103c #endif +#define PCI_VENDOR_SONY 0x104D #include "ati_pciids_gen.h" diff --git a/src/radeon_bios.c b/src/radeon_bios.c index b53a0ed8..5f125342 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -34,7 +34,7 @@ #include "xf86.h" #include "xf86_OSproc.h" -#include "xf86PciInfo.h" +#include "atipciids.h" #include "radeon.h" #include "radeon_reg.h" #include "radeon_macros.h" diff --git a/src/radeon_dri.c b/src/radeon_dri.c index 07f127c0..f1ae65e3 100644 --- a/src/radeon_dri.c +++ b/src/radeon_dri.c @@ -54,7 +54,6 @@ /* X and server generic header files */ #include "xf86.h" -#include "xf86PciInfo.h" #include "windowstr.h" /* GLX/DRI/DRM definitions */ |