core: Move write_serial() prototype to core.h
authorMatt Fleming <matt.fleming@intel.com>
Tue, 3 Apr 2012 10:37:36 +0000 (11:37 +0100)
committerMatt Fleming <matt.fleming@intel.com>
Tue, 17 Apr 2012 09:58:34 +0000 (10:58 +0100)
There's nothing inherently BIOS-specific about write_serial(), so it
doesn't make sense to have it in bios.h. Move the prototype to core.h
so that files can access the prototype without pulling in all the BIOS
symbols. Also add some missing function prototypes while we're at it.

Signed-off-by: Matt Fleming <matt.fleming@intel.com>
core/include/bios.h
core/include/core.h

index 1248e48..2b4b029 100644 (file)
@@ -73,8 +73,6 @@ extern union screen _screensize;
 #define VidCols                _screensize.b.col
 #define VidRows                _screensize.b.row
 
-extern void write_serial(char data);
-
 /* font.c */
 extern uint16_t VGAFontSize;
 extern void use_font(void);
index c1b2671..7d36e98 100644 (file)
@@ -101,4 +101,13 @@ static inline void set_flags(com32sys_t *regs, uint32_t flags)
 
 extern int start_ldlinux(char **argv);
 
+extern void write_serial(char data);
+extern void writestr(char *str);
+extern void writechr(char data);
+extern void crlf(void);
+
+extern void cleanup_hardware(void);
+extern void sirq_cleanup(void);
+extern void adjust_screen(void);
+
 #endif /* CORE_H */