From mboxrd@z Thu Jan 1 00:00:00 1970 From: York Sun Date: Wed, 20 Aug 2014 10:26:15 -0700 Subject: [U-Boot] [PATCH v5 15/16] ls102xa: dcu: Add platform support for DCU on LS1021ATWR board In-Reply-To: <1408416905-19771-16-git-send-email-b18965@freescale.com> References: <1408416905-19771-1-git-send-email-b18965@freescale.com> <1408416905-19771-16-git-send-email-b18965@freescale.com> Message-ID: <53F4DA37.2010707@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 08/18/2014 07:55 PM, Alison Wang wrote: > From: Wang Huan > > This patch adds the TWR_LCD_RGB card/HDMI options and the common > configuration for DCU on LS1021ATWR board. > > Signed-off-by: Alison Wang > --- > Change log: > v5: Change the patch order. > v4: Add commit messages. > v3: New file. > > board/freescale/ls1021atwr/Makefile | 1 + > board/freescale/ls1021atwr/dcu.c | 47 +++++++++++++++++++++++++++++++++ > board/freescale/ls1021atwr/ls1021atwr.c | 6 +++++ > include/configs/ls1021atwr.h | 18 +++++++++++++ > 4 files changed, 72 insertions(+) > create mode 100644 board/freescale/ls1021atwr/dcu.c > > diff --git a/board/freescale/ls1021atwr/Makefile b/board/freescale/ls1021atwr/Makefile > index b5df668..01296c0 100644 > --- a/board/freescale/ls1021atwr/Makefile > +++ b/board/freescale/ls1021atwr/Makefile > @@ -5,3 +5,4 @@ > # > > obj-y += ls1021atwr.o > +obj-$(CONFIG_FSL_DCU_FB) += dcu.o > diff --git a/board/freescale/ls1021atwr/dcu.c b/board/freescale/ls1021atwr/dcu.c > new file mode 100644 > index 0000000..8fe4ccb > --- /dev/null > +++ b/board/freescale/ls1021atwr/dcu.c > @@ -0,0 +1,47 @@ > +/* > + * Copyright 2014 Freescale Semiconductor, Inc. > + * > + * FSL DCU Framebuffer driver > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#include > +#include > +#include "div64.h" > +#include "../common/dcu_sii9022a.h" The order of this patch and 16/16 is wrong. This line fails until next patch is applied. Please reorder the patch to maintain git bisect workable. York