[U-Boot] [PATCH 10/8] Blackfin: cm-bf548: fix device->stdio_dev fallout

Mike Frysinger vapier at gentoo.org
Wed Sep 2 12:00:01 CEST 2009


The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
cm-bf548's video board.

Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 board/cm-bf548/video.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/cm-bf548/video.c b/board/cm-bf548/video.c
index 49dbe77..0787342 100644
--- a/board/cm-bf548/video.c
+++ b/board/cm-bf548/video.c
@@ -14,7 +14,7 @@
 #include <asm/mach-common/bits/dma.h>
 #include <i2c.h>
 #include <linux/types.h>
-#include <devices.h>
+#include <stdio_dev.h>
 
 int gunzip(void *, int, unsigned char *, unsigned long *);
 
@@ -291,7 +291,7 @@ void video_puts(const char *s)
 int drv_video_init(void)
 {
 	int error, devices = 1;
-	device_t videodev;
+	struct stdio_dev videodev;
 
 	u8 *dst;
 	u32 fbmem_size =
@@ -331,7 +331,7 @@ int drv_video_init(void)
 	videodev.putc = video_putc;	/* 'putc' function */
 	videodev.puts = video_puts;	/* 'puts' function */
 
-	error = device_register(&videodev);
+	error = stdio_register(&videodev);
 
 	return (error == 0) ? devices : error;
 }
-- 
1.6.4.2



More information about the U-Boot mailing list