summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>2012-11-14 00:10:20 +0000
committerAnatolij Gustschin <agust@denx.de>2012-11-14 12:27:49 +0100
commit4a1921eb04fa83acbab60fc0219e48e85dbc2f74 (patch)
treea956de08f43194fd75ec58a02628cd42234f6316
parentcfcd1c03e44fc22f2146948dc9f341b28e6ec583 (diff)
downloadblackbird-obmc-uboot-4a1921eb04fa83acbab60fc0219e48e85dbc2f74.tar.gz
blackbird-obmc-uboot-4a1921eb04fa83acbab60fc0219e48e85dbc2f74.zip
Video: fix compiler warnings in bus_vcxk
if a board uses the vcxk driver option CONFIG_SYS_VCXK_DOUBLEBUFFERD, compilier shows warnings. This patch will fix it. Signed-off-by: Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
-rw-r--r--drivers/video/bus_vcxk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/bus_vcxk.c b/drivers/video/bus_vcxk.c
index 9c4714d50a..a0607cf433 100644
--- a/drivers/video/bus_vcxk.c
+++ b/drivers/video/bus_vcxk.c
@@ -153,7 +153,7 @@ int vcxk_init(unsigned long width, unsigned long height)
#ifdef CONFIG_SYS_VCXK_DOUBLEBUFFERED
double_bws_word = (u_short *)double_bws;
double_bws_long = (u_long *)double_bws;
- debug("%lx %lx %lx \n", double_bws, double_bws_word, double_bws_long);
+ debug("%px %px %px\n", double_bws, double_bws_word, double_bws_long);
#endif
display_width = width;
display_height = height;
OpenPOWER on IntegriCloud