mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
drm2: fix build after abs64 became global
Fixes: 229c65a83f ("kern: Globally define abs64")
Sponsored by: Rubicon Communications, LLC ("Netgate")
This commit is contained in:
parent
d0af08c4ba
commit
ef545fe7ba
1 changed files with 0 additions and 7 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue