Move kfile interface to the io/ directory.
[bertos.git] / bertos / drv / sipo.c
index c30262745b4d87c58f9a89c7bde06f2facba0879..58830bbbbc95907b9385070f4360dfd6a9f14a4f 100644 (file)
@@ -30,7 +30,6 @@
  *
  * -->
  *
- * \version $Id$
  *
  * \brief SIPO Module
  *
@@ -48,7 +47,7 @@
 #include <cfg/compiler.h>
 #include <cfg/log.h>
 
-#include <kern/kfile.h>
+#include <io/kfile.h>
 
 #include <string.h>
 
@@ -79,7 +78,7 @@ INLINE void sipo_putchar(uint8_t c, uint8_t bit_order, uint8_t clock_pol)
 /**
  * Write a buffer into the sipo register and, when finished, give a load pulse.
  */
- static size_t sipo_write(struct KFile *_fd, const void *_buf, size_t size)
+static size_t sipo_write(struct KFile *_fd, const void *_buf, size_t size)
 {
        const uint8_t *buf = (const uint8_t *)_buf;
        Sipo *fd = SIPO_CAST(_fd);