]> git.sur5r.net Git - u-boot/blobdiff - board/bf548-ezkit/video.c
Prepare v2017.01
[u-boot] / board / bf548-ezkit / video.c
index 6737ac16284c3e462d9d2a4962e90f7892d9e3f0..37659932f2041fbf869a6157d0747300a889ac1d 100644 (file)
@@ -281,14 +281,6 @@ static void dma_bitblit(void *dst, fastimage_t *logo, int x, int y)
 
 }
 
-void video_putc(const char c)
-{
-}
-
-void video_puts(const char *s)
-{
-}
-
 int drv_video_init(void)
 {
        int error, devices = 1;
@@ -336,10 +328,6 @@ int drv_video_init(void)
        memset(&videodev, 0, sizeof(videodev));
 
        strcpy(videodev.name, "video");
-       videodev.ext = DEV_EXT_VIDEO;   /* Video extensions */
-       videodev.flags = DEV_FLAGS_SYSTEM;      /* No Output */
-       videodev.putc = video_putc;     /* 'putc' function */
-       videodev.puts = video_puts;     /* 'puts' function */
 
        error = stdio_register(&videodev);