diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:32 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:23:13 -0500 |
commit | b5981474f1f7d8b6b6669d549298dec3fc083cc8 (patch) | |
tree | 959f4d75a93ff9d9c8f4ff298d39ecf4c25b5b46 /board/freescale/qemu-ppce500 | |
parent | 68a6aa85ecbab5696fdcf970fdd7b7fe5a967146 (diff) | |
download | u-boot-b5981474f1f7d8b6b6669d549298dec3fc083cc8.tar.gz |
common: Move some CPU functions out of common.h
These functions belong in cpu_func.h since they do not use driver model.
Move them over. Don't bother adding comments since these functions should
be deleted.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/freescale/qemu-ppce500')
-rw-r--r-- | board/freescale/qemu-ppce500/qemu-ppce500.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/freescale/qemu-ppce500/qemu-ppce500.c b/board/freescale/qemu-ppce500/qemu-ppce500.c index fb36d8366c..4a5ab72b1f 100644 --- a/board/freescale/qemu-ppce500/qemu-ppce500.c +++ b/board/freescale/qemu-ppce500/qemu-ppce500.c @@ -5,6 +5,7 @@ #include <common.h> #include <command.h> +#include <cpu_func.h> #include <env.h> #include <pci.h> #include <asm/processor.h> |