summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-11-19 20:35:45 -0500
committerTom Rini <trini@konsulko.com>2017-11-19 20:35:45 -0500
commit29c49922561676854482f2133037c16f60fcfba8 (patch)
treec8bd5b8d54b90d8e8d7f81db5774697dc574a1fd /cmd
parentb6251db8c3f0de605b4cd6f15a00fc7dd19cda63 (diff)
parentafc1a78a0bd5db69f72db1dfa07b4a37a54343f6 (diff)
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fdt.c b/cmd/fdt.c
index 955a0088c6..b783b0df42 100644
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -256,7 +256,7 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
char *pathp; /* path */
char *prop; /* property */
int nodeoffset; /* node offset from libfdt */
- static char data[SCRATCHPAD]; /* storage for the property */
+ static char data[SCRATCHPAD] __aligned(4);/* property storage */
const void *ptmp;
int len; /* new length of the property */
int ret; /* return value */