mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 12:25:07 +00:00
xfree86: fbdevhw: fix prototypes of fbdevhwstub
The prototypes between the stub functions and the real ones mismatched. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
/* Stubs for the static server on platforms that don't support fbdev */
|
||||
|
||||
Bool
|
||||
fbdevHWProbe(struct pci_device *pPci, char *device, char **namep)
|
||||
fbdevHWProbe(struct pci_device *pPci, const char *device, char **namep)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
Bool
|
||||
fbdevHWInit(ScrnInfoPtr pScrn, struct pci_device *pPci, char *device)
|
||||
fbdevHWInit(ScrnInfoPtr pScrn, struct pci_device *pPci, const char *device)
|
||||
{
|
||||
LogMessageVerb(X_ERROR, 1, "fbdevhw is not available on this platform\n");
|
||||
return FALSE;
|
||||
|
||||
Reference in New Issue
Block a user