diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-03-22 22:08:59 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 17:11:09 (GMT) |
commit | 0eb25b619699270a8af95c2f76791fd6c4b52972 (patch) | |
tree | bb85868e6f9403bb59928feccb08662553e93c25 /common/board_r.c | |
parent | eb374221ecac57a85009b801110249e5a0d09ad1 (diff) | |
download | u-boot-0eb25b619699270a8af95c2f76791fd6c4b52972.tar.xz |
common: Make sure arch-specific map_sysmem() is defined
In the case where the arch defines a custom map_sysmem(), make sure that
including just mapmem.h is sufficient to have these functions as they
are when the arch does not override it.
Also split the non-arch specific functions out of common.h
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c index af01e1c..514bac8 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -33,6 +33,7 @@ #endif #include <logbuff.h> #include <malloc.h> +#include <mapmem.h> #ifdef CONFIG_BITBANGMII #include <miiphy.h> #endif |