clk: fix compilation when CONFIG_DEBUG_FS is disabled

Fix compilation error when CONFIG_DEBUG_FS is disabled in
perf_defconfig.

Change-Id: I18a54b5b7c13661933ca5be8d94e4c3756aaea52
Signed-off-by: Prateek Sood <prsood@codeaurora.org>
This commit is contained in:
Prateek Sood 2020-04-13 12:44:23 +05:30 committed by Gerrit - the friendly Code Review server
parent 26526d40bc
commit eac798fb10

View file

@ -4018,6 +4018,14 @@ static inline void clk_debug_reparent(struct clk_core *core,
static inline void clk_debug_unregister(struct clk_core *core)
{
}
void clk_debug_print_hw(struct clk_core *clk, struct seq_file *f)
{
}
void clock_debug_print_enabled(void)
{
}
#endif
/**