aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/drm2
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2023-09-09 20:50:55 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2023-09-18 21:00:11 +0000
commitf829556e3b8541f676db914c1d3a9604e15b4b31 (patch)
treef14af1446b2a2c681f4b6252010c6ce7c4e1544e /sys/dev/drm2
parent38da3db5f9e3e9bc9eba30a2c560bfe660ce95ec (diff)
Diffstat (limited to 'sys/dev/drm2')
-rw-r--r--sys/dev/drm2/drm_os_freebsd.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/drm2/drm_os_freebsd.h b/sys/dev/drm2/drm_os_freebsd.h
index 7f5bb22aff03..0ce0dede6d73 100644
--- a/sys/dev/drm2/drm_os_freebsd.h
+++ b/sys/dev/drm2/drm_os_freebsd.h
@@ -304,13 +304,6 @@ ilog2(unsigned long x)
return (flsl(x) - 1);
}
-static inline int64_t
-abs64(int64_t x)
-{
-
- return (x < 0 ? -x : x);
-}
-
int64_t timeval_to_ns(const struct timeval *tv);
struct timeval ns_to_timeval(const int64_t nsec);