[svn-commits] sruffell: linux/trunk r10640 - /linux/trunk/drivers/dahdi/dahdi_dummy.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Apr 5 11:15:26 CDT 2012


Author: sruffell
Date: Thu Apr  5 11:15:22 2012
New Revision: 10640

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=10640
Log:
dahdi_dummy: Include timer.h instead of time.h

It appears that some kernel configurations do not include timer.h in any of
the include files that are included by dahdi_dummy. The timer_structs are
defined in timer.h and not time.h, so this change is correct even though I
never could find a configuation myself that actually failed to compile.

This has negligible impact since dahdi_dummy is not compiled by default.

Internal-Issue-ID: DAHLIN-185
Reported-by: Steve Murphy
Signed-off-by: Shaun Ruffell <sruffell at digium.com>

Modified:
    linux/trunk/drivers/dahdi/dahdi_dummy.c

Modified: linux/trunk/drivers/dahdi/dahdi_dummy.c
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/dahdi_dummy.c?view=diff&rev=10640&r1=10639&r2=10640
==============================================================================
--- linux/trunk/drivers/dahdi/dahdi_dummy.c (original)
+++ linux/trunk/drivers/dahdi/dahdi_dummy.c Thu Apr  5 11:15:22 2012
@@ -53,7 +53,7 @@
 #if defined(USE_HIGHRESTIMER)
 #include <linux/hrtimer.h>
 #else
-#include <linux/time.h>
+#include <linux/timer.h>
 #endif
 
 #include <dahdi/kernel.h>




More information about the svn-commits mailing list