
Thank you for your comment. I will fix all this patch according to your comments and send version2.
Thank you, Donghwa Lee
On Fri, 06 Apr 2012 08:44, Anatolij Gustschin wrote:
Hi,
On Thu, 05 Apr 2012 15:29:34 +0900 Donghwa Lee dh09.lee@samsung.com wrote:
This patch support TRATS board configuration and display function.
Signed-off-by: Donghwa Lee dh09.lee@samsung.com Signed-off-by: Kyungmin Park kyungmin.park@samsung.com Signed-off-by: Inki Dae inki.dae@samsung.com
board/samsung/trats/trats.c | 147 +++++++++++++++++++++++++++++++++++++++++++ include/configs/trats.h | 8 +++ 2 files changed, 155 insertions(+), 0 deletions(-)
diff --git a/board/samsung/trats/trats.c b/board/samsung/trats/trats.c index a7b4e4a..a6861e1 100644 --- a/board/samsung/trats/trats.c +++ b/board/samsung/trats/trats.c
...
@@ -22,12 +23,15 @@
- MA 02111-1307 USA
*/
+#include <lcd.h>
Please put this lcd.h include after '#include <common.h>'. Otherwise the code is broken. lcd.h expects some macros defined elsewhere and these definitions will be included in common.h.
#include <common.h>
Thanks, Anatolij