diff options
author | Eric Anholt <eric@anholt.net> | 2007-08-27 15:46:05 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-08-27 15:46:05 -0700 |
commit | 801c359574d08ff2d6ac75a3325ff522bc862e30 (patch) | |
tree | 76243a148eab9324ed38f38b101b0329376be241 /hw | |
parent | 7d54399cfdaa7f54e28828267a76b89c4e8e798f (diff) |
Fix fbdevhwstub for pci-rework.
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/fbdevhw/fbdevhwstub.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/xfree86/fbdevhw/fbdevhwstub.c b/hw/xfree86/fbdevhw/fbdevhwstub.c index 56ba92901..191a6d33d 100644 --- a/hw/xfree86/fbdevhw/fbdevhwstub.c +++ b/hw/xfree86/fbdevhw/fbdevhwstub.c @@ -1,4 +1,3 @@ - #ifdef HAVE_XORG_CONFIG_H #include <xorg-config.h> #endif @@ -23,13 +22,13 @@ fbdevHWFreeRec(ScrnInfoPtr pScrn) Bool -fbdevHWProbe(pciVideoPtr pPci, char *device, char **namep) +fbdevHWProbe(struct pci_device *pPci, char *device, char **namep) { return FALSE; } Bool -fbdevHWInit(ScrnInfoPtr pScrn, pciVideoPtr pPci, char *device) +fbdevHWInit(ScrnInfoPtr pScrn, struct pci_device *pPci, char *device) { xf86Msg(X_ERROR, "fbdevhw is not available on this platform\n"); return FALSE; |