
Hi Moritz,
On Thu, 2015-09-03 at 11:44AM -0700, Moritz Fischer wrote:
Signed-off-by: Moritz Fischer moritz.fischer@ettus.com
arch/arm/dts/Makefile | 3 +- arch/arm/dts/zynq-e3xx.dts | 35 + arch/arm/mach-zynq/Kconfig | 4 + board/xilinx/zynq/Makefile | 2 + board/xilinx/zynq/e3xx_hw_platform/ps7_init_gpl.c | 13446 ++++++++++++++++++++ board/xilinx/zynq/e3xx_hw_platform/ps7_init_gpl.h | 130 + configs/zynq_e3xx_defconfig | 12 + include/configs/zynq_e3xx.h | 29 + 8 files changed, 13660 insertions(+), 1 deletion(-)
diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index c97f39d..bb5cb34 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -43,7 +43,8 @@ dtb-$(CONFIG_ARCH_UNIPHIER) += \ uniphier-ph1-pro4-ref.dtb \ uniphier-ph1-sld3-ref.dtb \ uniphier-ph1-sld8-ref.dtb -dtb-$(CONFIG_ARCH_ZYNQ) += zynq-zc702.dtb \ +dtb-$(CONFIG_ARCH_ZYNQ) += zynq-e3xx.dtb \
- zynq-zc702.dtb \
Just a nit, but should we make this +dtb-$(CONFIG_ARCH_ZYNQ) += \ + zynq-e3xx.dtb \ + zynq-zc702.dtb \ ...
Then, when more boards are added we have just simple additions of lines and get rid of the removal in the diffs.
Sören