diff options
author | Joe Hershberger <joe.hershberger@ni.com> | 2015-03-22 17:08:59 -0500 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:09 -0600 |
commit | 0eb25b619699270a8af95c2f76791fd6c4b52972 (patch) | |
tree | bb85868e6f9403bb59928feccb08662553e93c25 /drivers/serial | |
parent | eb374221ecac57a85009b801110249e5a0d09ad1 (diff) | |
download | u-boot-0eb25b619699270a8af95c2f76791fd6c4b52972.tar.gz u-boot-0eb25b619699270a8af95c2f76791fd6c4b52972.tar.xz u-boot-0eb25b619699270a8af95c2f76791fd6c4b52972.zip |
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 'drivers/serial')
-rw-r--r-- | drivers/serial/ns16550.c | 1 | ||||
-rw-r--r-- | drivers/serial/serial_uniphier.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 03beab5a14..67b1d60171 100644 --- a/drivers/serial/ns16550.c +++ b/drivers/serial/ns16550.c @@ -8,6 +8,7 @@ #include <dm.h> #include <errno.h> #include <fdtdec.h> +#include <mapmem.h> #include <ns16550.h> #include <serial.h> #include <watchdog.h> diff --git a/drivers/serial/serial_uniphier.c b/drivers/serial/serial_uniphier.c index 98e3b812e0..74547eb692 100644 --- a/drivers/serial/serial_uniphier.c +++ b/drivers/serial/serial_uniphier.c @@ -11,6 +11,7 @@ #include <asm/errno.h> #include <dm/device.h> #include <dm/platform_data/serial-uniphier.h> +#include <mapmem.h> #include <serial.h> #include <fdtdec.h> |