diff options
author | Tom Rini <trini@konsulko.com> | 2017-11-19 20:35:45 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-19 20:35:45 -0500 |
commit | 29c49922561676854482f2133037c16f60fcfba8 (patch) | |
tree | c8bd5b8d54b90d8e8d7f81db5774697dc574a1fd /cmd | |
parent | b6251db8c3f0de605b4cd6f15a00fc7dd19cda63 (diff) | |
parent | afc1a78a0bd5db69f72db1dfa07b4a37a54343f6 (diff) | |
download | u-boot-29c49922561676854482f2133037c16f60fcfba8.zip u-boot-29c49922561676854482f2133037c16f60fcfba8.tar.gz u-boot-29c49922561676854482f2133037c16f60fcfba8.tar.bz2 |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/fdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |