]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/cm-bf548/video.c
video: Drop DEV_EXT_VIDEO flag
[people/ms/u-boot.git] / board / cm-bf548 / video.c
index c35d28507088d429b7a54826965869c5393c78f4..b8cc873863687a7e64efd24d7b36f9f194c9066c 100644 (file)
@@ -283,14 +283,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;
@@ -340,10 +332,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);