aboutsummaryrefslogtreecommitdiffstats
path: root/src/freedreno/perfcntrs
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2019-12-09 13:08:33 -0800
committerRob Clark <[email protected]>2019-12-09 13:09:58 -0800
commitdc791d3c684ed97668dce74a222d306a4e22ae83 (patch)
tree3d5b5b31b982abf1173eecc91e3694b80e87f654 /src/freedreno/perfcntrs
parenta37822f5f740c55cd6f848adfd6c3d567ae4fd79 (diff)
freedreno/fdperf: use drmOpen()
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/freedreno/perfcntrs')
-rw-r--r--src/freedreno/perfcntrs/fdperf.c3
-rw-r--r--src/freedreno/perfcntrs/meson.build1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/freedreno/perfcntrs/fdperf.c b/src/freedreno/perfcntrs/fdperf.c
index 058456a7b51..afebc3830df 100644
--- a/src/freedreno/perfcntrs/fdperf.c
+++ b/src/freedreno/perfcntrs/fdperf.c
@@ -40,6 +40,7 @@
#include <curses.h>
#include <libconfig.h>
#include <inttypes.h>
+#include <xf86drm.h>
#include "drm/freedreno_drmif.h"
#include "drm/freedreno_ringbuffer.h"
@@ -327,7 +328,7 @@ find_device(void)
if (!dev.dtnode)
errx(1, "could not find qcom,adreno-3xx node");
- fd = open("/dev/dri/card0", O_RDWR);
+ fd = drmOpen("msm", NULL);
if (fd < 0)
err(1, "could not open drm device");
diff --git a/src/freedreno/perfcntrs/meson.build b/src/freedreno/perfcntrs/meson.build
index ae607eb0414..365af44a113 100644
--- a/src/freedreno/perfcntrs/meson.build
+++ b/src/freedreno/perfcntrs/meson.build
@@ -53,6 +53,7 @@ if dep_libconfig.found() and dep_ncurses.found()
],
dependencies : [
dep_libconfig,
+ dep_libdrm,
dep_ncurses,
idep_mesautil,
],