mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-17 11:43:51 +00:00
Now the R-Car platform code no longer supports DTBs lacking a SYSC device node in DT, all legacy handling can be dropped from the R-Car SYSC driver: - Make rcar_sysc_ch private to the driver, - Make rcar_sysc_power_{down,up}() static (they have been replaced by rcar_sysc_power_{down,up}_cpu()), - Remove the legacy wrapper rcar_sysc_init(), and the check for double initialization (only the early_initcall is left). Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
8 lines
266 B
C
8 lines
266 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __LINUX_SOC_RENESAS_RCAR_SYSC_H__
|
|
#define __LINUX_SOC_RENESAS_RCAR_SYSC_H__
|
|
|
|
int rcar_sysc_power_down_cpu(unsigned int cpu);
|
|
int rcar_sysc_power_up_cpu(unsigned int cpu);
|
|
|
|
#endif /* __LINUX_SOC_RENESAS_RCAR_SYSC_H__ */
|