Re: [U-Boot] [PATCH V3 4/4] api: export LCD and video to external apps

2011-10-19 Thread Che-liang Chiou
Hi Anatolij, I remove the support of video device from the patch set since I don't have a board with video output at hand for now. I will leave this to future work. Regards, Che-Liang On Wed, Oct 19, 2011 at 4:56 PM, Anatolij Gustschin wrote: > Hi, > > On Tue, 18 Oct 2011 17:15:38 +0800 > Che-L

Re: [U-Boot] [PATCH V3 4/4] api: export LCD and video to external apps

2011-10-19 Thread Anatolij Gustschin
Hi, On Tue, 18 Oct 2011 17:15:38 +0800 Che-Liang Chiou wrote: ... > +int display_get_info(int type, struct display_info *di) > +{ > +#if defined(CONFIG_VIDEO) || defined(CONFIG_CFB_CONSOLE) > + GraphicDevice *gdev; > +#endif > + > + switch (type) { > + default: > + debug("

[U-Boot] [PATCH V3 4/4] api: export LCD and video to external apps

2011-10-18 Thread Che-Liang Chiou
This patch exports LCD and video information and bitmap-rendering functions to external apps. This patch is tested on a Seaboard, which does not have a video output. So I only tested LCD code paths. NOTE: The Seaboard LCD driver is not yet upstreamed; the test was done in a local downstream repo.