Re: [U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-05-02 Thread Minkyu Kang
On 26 April 2012 16:59, Anatolij Gustschin wrote: > Hi, > > On Thu, 26 Apr 2012 08:29:39 +0900 > Donghwa Lee wrote: > >> panel_info data structure is gloable variable, so, I have initialized it >> in board file. If it is initialized in init_panel_info() like existing, >> it can't be used in drv_l

Re: [U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-04-26 Thread Anatolij Gustschin
Hi, On Thu, 26 Apr 2012 08:29:39 +0900 Donghwa Lee wrote: > panel_info data structure is gloable variable, so, I have initialized it > in board file. If it is initialized in init_panel_info() like existing, > it can't be used in drv_lcd_init() in common/lcd.c because > init_panel_info() is calle

[U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-04-25 Thread Donghwa Lee
panel_info data structure is gloable variable, so, I have initialized it in board file. If it is initialized in init_panel_info() like existing, it can't be used in drv_lcd_init() in common/lcd.c because init_panel_info() is called after drv_lcd_init(). change of v1: - I had made a mistake that m