From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatolij Gustschin Date: Fri, 6 Apr 2012 01:44:29 +0200 Subject: [U-Boot] [PATCH 7/7] EXYNOS: support TRATS board display function In-Reply-To: <4F7D3BCE.6060200@samsung.com> References: <4F7D3BCE.6060200@samsung.com> Message-ID: <20120406014429.74d941da@wker> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, On Thu, 05 Apr 2012 15:29:34 +0900 Donghwa Lee wrote: > This patch support TRATS board configuration and display function. > > Signed-off-by: Donghwa Lee > Signed-off-by: Kyungmin Park > Signed-off-by: Inki Dae > --- > 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 Please put this lcd.h include after '#include '. Otherwise the code is broken. lcd.h expects some macros defined elsewhere and these definitions will be included in common.h. > #include Thanks, Anatolij