diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-01-15 14:59:09 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-01-18 01:22:30 +0900 |
commit | a8e6300d483d85f9eff211220db582cf6a403c0b (patch) | |
tree | 16d62d6bc5d7feda9ed08f3a6a70b9685031db19 /arch/arm/mach-uniphier/clk/dpll-pro5.c | |
parent | b61664e230b30084f2fae5063123fd40bd17d0f7 (diff) |
ARM: uniphier: refactor spl_init_board()
Merge init-*.c into a single file using a table of callbacks because
the initialization flow is almost common among SoCs.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier/clk/dpll-pro5.c')
-rw-r--r-- | arch/arm/mach-uniphier/clk/dpll-pro5.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-uniphier/clk/dpll-pro5.c b/arch/arm/mach-uniphier/clk/dpll-pro5.c new file mode 100644 index 0000000000..d3a42c7b4f --- /dev/null +++ b/arch/arm/mach-uniphier/clk/dpll-pro5.c @@ -0,0 +1,6 @@ +#include "../init.h" + +int uniphier_pro5_dpll_init(const struct uniphier_board_data *bd) +{ + return 0; +} |