mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +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>
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* spear machine family generic header file
|
|
*
|
|
* Copyright (C) 2009-2012 ST Microelectronics
|
|
* Rajeev Kumar <rajeev-dlh.kumar@st.com>
|
|
* Viresh Kumar <vireshk@kernel.org>
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#ifndef __MACH_GENERIC_H
|
|
#define __MACH_GENERIC_H
|
|
|
|
#include <linux/dmaengine.h>
|
|
#include <linux/amba/pl08x.h>
|
|
#include <linux/init.h>
|
|
#include <linux/reboot.h>
|
|
|
|
#include <asm/mach/time.h>
|
|
|
|
extern volatile int spear_pen_release;
|
|
|
|
extern void spear13xx_timer_init(void);
|
|
extern void spear3xx_timer_init(void);
|
|
extern struct pl022_ssp_controller pl022_plat_data;
|
|
extern struct pl08x_platform_data pl080_plat_data;
|
|
|
|
void __init spear_setup_of_timer(void);
|
|
void __init spear3xx_clk_init(void __iomem *misc_base,
|
|
void __iomem *soc_config_base);
|
|
void __init spear3xx_map_io(void);
|
|
void __init spear3xx_dt_init_irq(void);
|
|
void __init spear6xx_clk_init(void __iomem *misc_base);
|
|
void __init spear13xx_map_io(void);
|
|
void __init spear13xx_l2x0_init(void);
|
|
|
|
void spear_restart(enum reboot_mode, const char *);
|
|
|
|
void spear13xx_secondary_startup(void);
|
|
void spear13xx_cpu_die(unsigned int cpu);
|
|
|
|
extern const struct smp_operations spear13xx_smp_ops;
|
|
|
|
#endif /* __MACH_GENERIC_H */
|