1 2 #ifdef HAVE_XORG_CONFIG_H 3 #include <xorg-config.h> 4 #endif 5 6 #ifdef XSERVER_PLATFORM_BUS 7 /* noop platform device support */ 8 #include "xf86_OSproc.h" 9 10 #include "xf86.h" 11 #include "xf86platformBus.h" 12 13 Bool xf86PlatformDeviceCheckBusID(struct xf86_platform_device * device,const char * busid)14xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid) 15 { 16 return FALSE; 17 } 18 xf86PlatformDeviceProbe(struct OdevAttributes * attribs)19void xf86PlatformDeviceProbe(struct OdevAttributes *attribs) 20 { 21 22 } 23 #endif 24