diff mbox

[U-Boot,v2,02/18] fdt: arm: Drop device tree padding

Message ID 1431464119-21574-3-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass May 12, 2015, 8:55 p.m. UTC
The 4KB padding doesn't seem necessary since we don't normally adjust the
control device tree file within U-Boot. Also drop the memory table space.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2:
- Also drop the memory table space

 arch/arm/dts/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Simon Glass June 11, 2015, 8:19 p.m. UTC | #1
On 12 May 2015 at 14:55, Simon Glass <sjg@chromium.org> wrote:
> The 4KB padding doesn't seem necessary since we don't normally adjust the
> control device tree file within U-Boot. Also drop the memory table space.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v2:
> - Also drop the memory table space
>
>  arch/arm/dts/Makefile | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Applied to u-boot-dm.
diff mbox

Patch

diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 267fd17..13efa7a 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -132,7 +132,8 @@  dtb-$(CONFIG_MACH_SUN9I) += \
 
 targets += $(dtb-y)
 
-DTC_FLAGS += -R 4 -p 0x1000
+# Add any required device tree compiler flags here
+DTC_FLAGS +=
 
 PHONY += dtbs
 dtbs: $(addprefix $(obj)/, $(dtb-y))