X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=arch%2Fx86%2Flib%2Fvideo.c;h=975949daa3e689495cb3146118cdd30bd649110b;hb=709ea543b92489e7729d2d7ddd6c9f451e52158c;hp=eb9c595a4e08085e73c814edfb0809c90bbb9ade;hpb=91d0be1dd845913ba276e041dc11d1297390de11;p=u-boot diff --git a/arch/x86/lib/video.c b/arch/x86/lib/video.c index eb9c595a4e..975949daa3 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;