diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 20:44:58 +0300 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-01-24 20:36:48 +0300 |
commit | b63ff2ae54a74e68fb67ea7f150e9f01174eb535 (patch) | |
tree | eef87384b3c4f0169c0dae2678b382c174b80479 /common | |
parent | 39fdefa6cf302ad2dbc30c905f03e5480b380ec3 (diff) | |
download | u-boot-b63ff2ae54a74e68fb67ea7f150e9f01174eb535.tar.xz |
common: Move clock functions into a new file
These three clock functions don't use driver model and should be migrated.
In the meantime, create a new file to hold them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/board_f.c b/common/board_f.c index d66afb37ca..3c6877da33 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -11,6 +11,7 @@ #include <common.h> #include <bloblist.h> +#include <clock_legacy.h> #include <console.h> #include <cpu.h> #include <cpu_func.h> |