summaryrefslogtreecommitdiff
path: root/drivers/dahdi/dahdi_dummy.c
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2009-01-20 21:23:34 +0000
committerShaun Ruffell <sruffell@digium.com>2009-01-20 21:23:34 +0000
commit71ba0631e3f0d50c1b3e19c6282fe362a5d63ee7 (patch)
treeb1a75b9a433edffbf6ea369055d6297e8e23fc21 /drivers/dahdi/dahdi_dummy.c
parentafc0f6efe0840537b8e332c2fa3b93c9bbc18354 (diff)
Some distributions have backported the hrtimer_get_expires and
hrtimer_set_expires functions from 2.6.28. Therefore, dahdi-linux cannot use the linux version code to determine if these functions are present or not. This patch actively checks for those functions. Closes Issue: #14166 Thanks to bergolth for the patch. git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@5770 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/dahdi_dummy.c')
-rw-r--r--drivers/dahdi/dahdi_dummy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/dahdi/dahdi_dummy.c b/drivers/dahdi/dahdi_dummy.c
index a3d12ac..a009ac2 100644
--- a/drivers/dahdi/dahdi_dummy.c
+++ b/drivers/dahdi/dahdi_dummy.c
@@ -89,8 +89,10 @@
#define USB2420
#endif
-#if defined(USE_HIGHRESTIMER) && ( LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28) )
-/* compatibility with new hrtimer interface */
+#if defined(USE_HIGHRESTIMER) && \
+ (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 27)) || \
+ (!defined(HAVE_HRTIMER_ACCESSORS))
+/* Compatibility with new hrtimer interface */
static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer)
{
return timer->expires;