Skip to content
Snippets Groups Projects
Commit 4a1921eb authored by Jens Scharsig (BuS Elektronik)'s avatar Jens Scharsig (BuS Elektronik) Committed by Anatolij Gustschin
Browse files

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: default avatarJens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
parent cfcd1c03
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ int vcxk_init(unsigned long width, unsigned long height) ...@@ -153,7 +153,7 @@ int vcxk_init(unsigned long width, unsigned long height)
#ifdef CONFIG_SYS_VCXK_DOUBLEBUFFERED #ifdef CONFIG_SYS_VCXK_DOUBLEBUFFERED
double_bws_word = (u_short *)double_bws; double_bws_word = (u_short *)double_bws;
double_bws_long = (u_long *)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 #endif
display_width = width; display_width = width;
display_height = height; display_height = height;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment