xref: /OK3568_Linux_fs/external/xserver/hw/xfree86/os-support/shared/platform_noop.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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)14 xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid)
15 {
16     return FALSE;
17 }
18 
xf86PlatformDeviceProbe(struct OdevAttributes * attribs)19 void xf86PlatformDeviceProbe(struct OdevAttributes *attribs)
20 {
21 
22 }
23 #endif
24