Index: kernel/genarch/include/fb/fb.h
===================================================================
--- kernel/genarch/include/fb/fb.h	(revision 27e291609fe207cd6350a016713df0c547720247)
+++ kernel/genarch/include/fb/fb.h	(revision 76fca318d723e24d0c79dc1a99d87b0b03dee0f1)
@@ -27,5 +27,5 @@
  */
 
-/** @addtogroup genarch	
+/** @addtogroup genarch
  * @{
  */
@@ -66,4 +66,6 @@
 
 SPINLOCK_EXTERN(fb_lock);
+
+void fb_redraw(void);
 void fb_init(fb_properties_t *props);
 
Index: kernel/genarch/include/fb/font-8x16.h
===================================================================
--- kernel/genarch/include/fb/font-8x16.h	(revision 27e291609fe207cd6350a016713df0c547720247)
+++ kernel/genarch/include/fb/font-8x16.h	(revision 76fca318d723e24d0c79dc1a99d87b0b03dee0f1)
@@ -27,5 +27,5 @@
  */
 
-/** @addtogroup genarch	
+/** @addtogroup genarch
  * @{
  */
@@ -36,8 +36,11 @@
 #define KERN_FONT_8X16_H_
 
-#define FONT_GLIPHS		256
-#define FONT_SCANLINES	16
+#define FONT_GLYPHS      256
+#define FONT_WIDTH       8
+#define FONT_SCANLINES   16
 
-extern unsigned char fb_font[FONT_GLIPHS * FONT_SCANLINES];
+#include <arch/types.h>
+
+extern uint8_t fb_font[FONT_GLYPHS * FONT_SCANLINES];
 
 #endif
Index: kernel/genarch/include/fb/visuals.h
===================================================================
--- kernel/genarch/include/fb/visuals.h	(revision 27e291609fe207cd6350a016713df0c547720247)
+++ kernel/genarch/include/fb/visuals.h	(revision 76fca318d723e24d0c79dc1a99d87b0b03dee0f1)
@@ -27,5 +27,5 @@
  */
 
-/** @addtogroup genarch	
+/** @addtogroup genarch
  * @{
  */
@@ -36,13 +36,13 @@
 #define KERN_VISUALS_H_
 
-#define VISUAL_INDIRECT_8	0
+#define VISUAL_INDIRECT_8   0
 
-#define VISUAL_RGB_5_5_5	1
-#define VISUAL_RGB_5_6_5	2
-#define VISUAL_RGB_8_8_8	3
-#define VISUAL_RGB_8_8_8_0	4
-#define VISUAL_RGB_0_8_8_8	5
+#define VISUAL_RGB_5_5_5    1
+#define VISUAL_RGB_5_6_5    2
+#define VISUAL_RGB_8_8_8    3
+#define VISUAL_RGB_8_8_8_0  4
+#define VISUAL_RGB_0_8_8_8  5
 
-#define VISUAL_BGR_0_8_8_8	6
+#define VISUAL_BGR_0_8_8_8  6
 
 #endif
