summaryrefslogtreecommitdiffstats
path: root/common/cmd_sf.c
diff options
context:
space:
mode:
authorMingkai Hu <Mingkai.hu@freescale.com>2013-04-07 22:13:32 +0000
committerTom Rini <trini@ti.com>2013-04-08 12:00:51 -0400
commit381c6e2c90ed083281649e74e461a303c1ffab47 (patch)
treebb0d383250a828934084a43609bfc64d81cebc94 /common/cmd_sf.c
parenta6142706f578e6246bc987ae8ac343f506d3ad35 (diff)
downloadblackbird-obmc-uboot-381c6e2c90ed083281649e74e461a303c1ffab47.tar.gz
blackbird-obmc-uboot-381c6e2c90ed083281649e74e461a303c1ffab47.zip
cmd_sf: include header file common.h before div64.h
The header file div64.h includes <asm/types.h> which defines the phys_addr_t according to the macro CONFIG_PHYS_64BIT, while the macro CONFIG_PHYS_64BIT is included in common.h which comes after div64.h, so in order to get consistent type definition for phys_addr_t, common.h should be included before div64.h, Or else, the parameters of phys_addr_t type will be passed wrongly when CONFIG_PHYS_64BIT is defined. Signed-off-by: Mingkai Hu <Mingkai.Hu@freescale.com>
Diffstat (limited to 'common/cmd_sf.c')
-rw-r--r--common/cmd_sf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_sf.c b/common/cmd_sf.c
index 3f0d414954..0a17782d66 100644
--- a/common/cmd_sf.c
+++ b/common/cmd_sf.c
@@ -5,8 +5,8 @@
* Licensed under the GPL-2 or later.
*/
-#include <div64.h>
#include <common.h>
+#include <div64.h>
#include <malloc.h>
#include <spi_flash.h>
OpenPOWER on IntegriCloud