summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2016-12-01 19:54:39 +0000
committerEmil Velikov <[email protected]>2017-03-15 11:37:58 +0000
commit858170e8a40c2fcd1c47750944c5d5c10178241f (patch)
tree9ae5ad20c83b952ab720a80f1a38bea5eb3c1138 /src
parenta50c4eb2a0fd42a3da0eea560876cb43afdb81f2 (diff)
winsys/amdgpu: use drmGetDevice2 API
Analogous to previous commit Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=98502 Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Michel Dänzer <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Tested-by: Mike Lothian <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
index bf7a0573990..37e01403113 100644
--- a/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
+++ b/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
@@ -108,9 +108,9 @@ static bool do_winsys_init(struct amdgpu_winsys *ws, int fd)
drmDevicePtr devinfo;
/* Get PCI info. */
- r = drmGetDevice(fd, &devinfo);
+ r = drmGetDevice2(fd, 0, &devinfo);
if (r) {
- fprintf(stderr, "amdgpu: drmGetDevice failed.\n");
+ fprintf(stderr, "amdgpu: drmGetDevice2 failed.\n");
goto fail;
}
ws->info.pci_domain = devinfo->businfo.pci->domain;