diff options
Diffstat (limited to 'arch/x86/lib/video.c')
-rw-r--r-- | arch/x86/lib/video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/video.c b/arch/x86/lib/video.c index eb9c595a4e0..975949daa3e 100644 --- a/arch/x86/lib/video.c +++ b/arch/x86/lib/video.c @@ -104,7 +104,7 @@ static void __video_putc(const char c, int *x, int *y) } } -static void video_putc(const char c) +static void video_putc(struct stdio_dev *dev, const char c) { int x, y, pos; @@ -123,7 +123,7 @@ static void video_putc(const char c) outb_p(0xff & (pos >> 1), vidport+1); } -static void video_puts(const char *s) +static void video_puts(struct stdio_dev *dev, const char *s) { int x, y, pos; char c; |