[dahdi-commits] sruffell: branch linux/2.6 r10644 -	/linux/branches/2.6/drivers/dahdi/
    SVN commits to the DAHDI project 
    dahdi-commits at lists.digium.com
       
    Thu Apr  5 11:22:40 CDT 2012
    
    
  
Author: sruffell
Date: Thu Apr  5 11:22:37 2012
New Revision: 10644
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=10644
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>
Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=10640
Modified:
    linux/branches/2.6/drivers/dahdi/dahdi_dummy.c
Modified: linux/branches/2.6/drivers/dahdi/dahdi_dummy.c
URL: http://svnview.digium.com/svn/dahdi/linux/branches/2.6/drivers/dahdi/dahdi_dummy.c?view=diff&rev=10644&r1=10643&r2=10644
==============================================================================
--- linux/branches/2.6/drivers/dahdi/dahdi_dummy.c (original)
+++ linux/branches/2.6/drivers/dahdi/dahdi_dummy.c Thu Apr  5 11:22:37 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 dahdi-commits
mailing list