~ubuntu-branches/ubuntu/precise/xorg-server-lts-saucy/precise-proposed

« back to all changes in this revision

Viewing changes to hw/xfree86/os-support/shared/platform_noop.c

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-12-23 09:04:34 UTC
  • Revision ID: package-import@ubuntu.com-20131223090434-ymvhk24uu856visk
Tags: 2:1.14.5-1ubuntu2~saucy1~precise1
Initial lts-saucy upload, i386/amd64 only. (LP: #1253041)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
14
xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid)
 
15
{
 
16
    return FALSE;
 
17
}
 
18
 
 
19
void xf86PlatformDeviceProbe(struct OdevAttributes *attribs)
 
20
{
 
21
 
 
22
}
 
23
#endif