Use debug.h instead of kdebug.h.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 14 Sep 2004 21:07:18 +0000 (21:07 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 14 Sep 2004 21:07:18 +0000 (21:07 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@210 38d2e660-2303-0410-9eaa-f027e97ec537

drv/eeprom.c
drv/kdebug.c
drv/timer.c
kern/proc.c
kern/signal.c

index 1729a8949d73394385fae4d16192b5ac691d18e6..34666aaf437c175cefa06a2341c766cb3a2dde64 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.9  2004/09/14 21:03:46  bernie
+ *#* Use debug.h instead of kdebug.h.
+ *#*
  *#* Revision 1.8  2004/08/25 14:12:08  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -46,7 +49,7 @@
 #include "eeprom.h"
 
 #include <mware/byteorder.h> /* cpu_to_be16() */
-#include <drv/kdebug.h>
+#include <debug.h>
 #include <hw.h>
 #include <macros.h>  // MIN()
 
index cabd8b7a8a9f3cd0d8a7cffe67f3cd77d4ffc160..c64ab13921d4495630f099cae979d5992eeabc21 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.15  2004/09/14 21:03:46  bernie
+ *#* Use debug.h instead of kdebug.h.
+ *#*
  *#* Revision 1.14  2004/09/06 21:39:56  bernie
  *#* Allow partial redefinition of BUS macros.
  *#*
@@ -61,7 +64,8 @@
  *#*
  *#*/
 
-#include "kdebug.h"
+#include <debug.h>
+#include <cpu.h>
 #include "hw.h"
 #include "config.h"
 
index 22512251278fb347f08890999bb40f1f0e136246..c9c66832fda448b48e8f694db2ab8a624aa3b01d 100755 (executable)
@@ -1,7 +1,7 @@
 /*!
  * \file
  * <!--
- * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 2000 Bernardo Innocenti <bernie@develer.com>
  * This file is part of DevLib - See devlib/README for information.
  * -->
@@ -15,6 +15,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.15  2004/09/14 21:07:18  bernie
+ *#* Use debug.h instead of kdebug.h.
+ *#*
  *#* Revision 1.14  2004/08/25 14:12:08  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
  *#*
  *#*/
 
-#include "hw.h"
-#include "kdebug.h"
 #include "timer.h"
+#include <cpu.h>
 #include CPU_HEADER(timer)
+#include <debug.h>
 
 #if defined(CONFIG_KERN_SIGNALS) && CONFIG_KERN_SIGNALS
        #include <kern/proc.h>
index 84357658d569d989a323ea1921838ae308f177bd..88791e0afb8b1e91df76b8b92fe6c46f2ec4461f 100755 (executable)
@@ -17,6 +17,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.14  2004/09/14 21:06:44  bernie
+ *#* Use debug.h instead of kdebug.h.
+ *#*
  *#* Revision 1.13  2004/08/29 21:58:53  bernie
  *#* Include macros.h explicityl.
  *#*
@@ -61,7 +64,7 @@
 #include "cpu.h"
 #include "event.h"
 #include "hw.h"
-#include <drv/kdebug.h>
+#include <debug.h>
 #include <arch_config.h>  /* ARCH_EMUL */
 #include <macros.h>  /* ABS() */
 
index 88ab1095915cacc74070f7b18e13828828fe4141..0243987be76ac237b4b0c9ce8704b294f9584498 100755 (executable)
@@ -66,6 +66,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.8  2004/09/14 21:06:44  bernie
+ *#* Use debug.h instead of kdebug.h.
+ *#*
  *#* Revision 1.7  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -95,7 +98,7 @@
 #include "proc.h"
 #include "proc_p.h"
 #include "hw.h"
-#include <drv/kdebug.h>
+#include <debug.h>
 
 // FIXME
 #if CONFIG_KERN_SIGNALS