From 5029aa7e8c3e997f89ebd4d78c0e1ae5af9ee2aa Mon Sep 17 00:00:00 2001 From: Masayuki Ishikawa Date: Wed, 10 Jan 2018 15:36:16 +0900 Subject: [PATCH] configs/lc823450-xgevk: Enable DVFS in lc823450_bringup.c Signed-off-by: Masayuki Ishikawa --- configs/lc823450-xgevk/src/lc823450_bringup.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configs/lc823450-xgevk/src/lc823450_bringup.c b/configs/lc823450-xgevk/src/lc823450_bringup.c index 392b7143423..8b41c839fe5 100644 --- a/configs/lc823450-xgevk/src/lc823450_bringup.c +++ b/configs/lc823450-xgevk/src/lc823450_bringup.c @@ -57,6 +57,10 @@ # include "lc823450_wdt.h" #endif +#ifdef CONFIG_DVFS +# include "lc823450_dvfs2.h" +#endif + #include "lc823450-xgevk.h" /**************************************************************************** @@ -80,6 +84,11 @@ int lc823450_bringup(void) #endif #ifdef CONFIG_FS_PROCFS + +#ifdef CONFIG_DVFS + (void)dvfs_procfs_register(); +#endif + /* Mount the procfs file system */ ret = mount(NULL, "/proc", "procfs", 0, NULL);