mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
f2ad937b62
Fixes the following W=1 kernel build warning(s): drivers/clk/spear/spear1310_clock.c:385:13: warning: no previous prototype for ‘spear1310_clk_init’ [-Wmissing-prototypes] drivers/clk/spear/spear1340_clock.c:442:13: warning: no previous prototype for ‘spear1340_clk_init’ [-Wmissing-prototypes] Cc: Viresh Kumar <vireshk@kernel.org> Cc: Shiraz Hashim <shiraz.linux.kernel@gmail.com> Cc: Russell King <linux@armlinux.org.uk> Cc: Rajeev Kumar <rajeev-dlh.kumar@st.com> Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20210126124540.3320214-20-lee.jones@linaro.org Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
23 lines
610 B
C
23 lines
610 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2020 STMicroelectronics - All Rights Reserved
|
|
*
|
|
* Author: Lee Jones <lee.jones@linaro.org>
|
|
*/
|
|
|
|
#ifndef __LINUX_CLK_SPEAR_H
|
|
#define __LINUX_CLK_SPEAR_H
|
|
|
|
#ifdef CONFIG_MACH_SPEAR1310
|
|
void __init spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base);
|
|
#else
|
|
static inline void spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base) {}
|
|
#endif
|
|
|
|
#ifdef CONFIG_MACH_SPEAR1340
|
|
void __init spear1340_clk_init(void __iomem *misc_base);
|
|
#else
|
|
static inline void spear1340_clk_init(void __iomem *misc_base) {}
|
|
#endif
|
|
|
|
#endif
|