summaryrefslogtreecommitdiff
path: root/xf86drm.c
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-09-07 18:26:34 +0100
committerEmil Velikov <emil.l.velikov@gmail.com>2015-09-21 17:42:57 +0100
commit291b2bb92c5fc90101417b80bbdc6c994be5fff2 (patch)
treed1d975ff1728e7272d3ac5542a65e34136db8548 /xf86drm.c
parent5f68d31820315ebda9b49e8bd50d1ab605efd7fa (diff)
downloaddrm-291b2bb92c5fc90101417b80bbdc6c994be5fff2.tar.gz
xf86drm: move ifdef __linux__ guards where needed
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'xf86drm.c')
-rw-r--r--xf86drm.c33
1 files changed, 15 insertions, 18 deletions
diff --git a/xf86drm.c b/xf86drm.c
index 8105b423..3d03cbff 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -2836,9 +2836,9 @@ char *drmGetRenderDeviceNameFromFd(int fd)
return drmGetMinorNameForFD(fd, DRM_NODE_RENDER);
}
-#ifdef __linux__
static int drmParseSubsystemType(int maj, int min)
{
+#ifdef __linux__
char path[PATH_MAX + 1];
char link[PATH_MAX + 1] = "";
char *name;
@@ -2857,10 +2857,15 @@ static int drmParseSubsystemType(int maj, int min)
return DRM_BUS_PCI;
return -EINVAL;
+#else
+#warning "Missing implementation of drmParseSubsystemType"
+ return -EINVAL;
+#endif
}
static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
{
+#ifdef __linux__
char path[PATH_MAX + 1];
char data[128];
char *str;
@@ -2893,6 +2898,10 @@ static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
info->func = func;
return 0;
+#else
+#warning "Missing implementation of drmParsePciBusInfo"
+ return -EINVAL;
+#endif
}
static int drmCompareBusInfo(drmDevicePtr a, drmDevicePtr b)
@@ -2942,6 +2951,7 @@ static int drmGetMaxNodeName(void)
static int drmParsePciDeviceInfo(const char *d_name,
drmPciDeviceInfoPtr device)
{
+#ifdef __linux__
char path[PATH_MAX + 1];
unsigned char config[64];
int fd, ret;
@@ -2963,6 +2973,10 @@ static int drmParsePciDeviceInfo(const char *d_name,
device->subdevice_id = config[46] | (config[47] << 8);
return 0;
+#else
+#warning "Missing implementation of drmParsePciDeviceInfo"
+ return -EINVAL;
+#endif
}
static void drmFreeDevice(drmDevicePtr *device)
@@ -3139,20 +3153,3 @@ close_sysdir:
closedir(sysdir);
return ret;
}
-#else
-void drmFreeDevices(drmDevicePtr devices[], int count)
-{
- (void)devices;
- (void)count;
-}
-
-int drmGetDevices(drmDevicePtr devices[], int max_devices)
-{
- (void)devices;
- (void)max_devices;
- return -EINVAL;
-}
-
-#warning "Missing implementation of drmGetDevices/drmFreeDevices"
-
-#endif