IRQ_GETSTATE(): New macro; Rename IRQ macros for consistency.
[bertos.git] / drv / ser.c
index 663366753d72ef5ce29e772fc83e78cd29c6ff58..289551d06ff60b78e1208e2ab010a0c685dfe760 100755 (executable)
--- a/drv/ser.c
+++ b/drv/ser.c
 
 /*#*
  *#* $Log$
+ *#* Revision 1.18  2004/09/20 03:31:15  bernie
+ *#* Sanitize for C++.
+ *#*
+ *#* Revision 1.17  2004/09/14 21:06:07  bernie
+ *#* Use debug.h instead of kdebug.h; Spelling fixes.
+ *#*
  *#* Revision 1.16  2004/09/06 21:40:50  bernie
  *#* Move buffer handling in chip-specific driver.
  *#*
@@ -76,7 +82,7 @@
  *#*/
 
 #include <mware/formatwr.h>
-#include <drv/kdebug.h>
+#include <debug.h>
 #include "ser.h"
 #include "ser_p.h"
 #include "hw.h"
@@ -301,7 +307,7 @@ int ser_print(struct Serial *port, const char *s)
  */
 int ser_write(struct Serial *port, const void *_buf, size_t len)
 {
-       const char *buf = _buf;
+       const char *buf = (const char *)_buf;
 
        while (len--)
        {
@@ -341,7 +347,7 @@ void ser_settimeouts(struct Serial *port, time_t rxtimeout, time_t txtimeout)
 
 #if CONFIG_SER_RXTIMEOUT != -1
 /*!
- * Discard input to resynchronize with remote end
+ * Discard input to resynchronize with remote end.
  *
  * Discard incoming data until the port stops receiving
  * characters for at least \a delay milliseconds.