diff options
-rw-r--r-- | src/r128_probe.c | 4 | ||||
-rw-r--r-- | src/radeon_probe.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/r128_probe.c b/src/r128_probe.c index 7895166..431efef 100644 --- a/src/r128_probe.c +++ b/src/r128_probe.c @@ -47,6 +47,10 @@ #include "xf86PciInfo.h" #include "xf86Resources.h" +#ifndef XSERVER_LIBPCIACCESS +static Bool R128Probe(DriverPtr drv, int flags); +#endif + SymTabRec R128Chipsets[] = { { PCI_CHIP_RAGE128LE, "ATI Rage 128 Mobility M3 LE (PCI)" }, { PCI_CHIP_RAGE128LF, "ATI Rage 128 Mobility M3 LF (AGP)" }, diff --git a/src/radeon_probe.c b/src/radeon_probe.c index 658f909..936d43f 100644 --- a/src/radeon_probe.c +++ b/src/radeon_probe.c @@ -56,6 +56,10 @@ #include "radeon_pci_device_match_gen.h" #endif +#ifndef XSERVER_LIBPCIACCESS +static Bool RADEONProbe(DriverPtr drv, int flags); +#endif + int gRADEONEntityIndex = -1; /* Return the options for supported chipset 'n'; NULL otherwise */ |