mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 08:22:39 +00:00
c99cd90d98
Now when the Marzen legacy board code is gone this patch removes the unused r8a7779 legacy SoC code. Signed-off-by: Magnus Damm <damm+renesas@opensource.se> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
17 lines
343 B
C
17 lines
343 B
C
#ifndef __ASM_R8A7779_H__
|
|
#define __ASM_R8A7779_H__
|
|
|
|
#include <linux/sh_clk.h>
|
|
|
|
extern void r8a7779_pm_init(void);
|
|
|
|
#ifdef CONFIG_PM
|
|
extern void __init r8a7779_init_pm_domains(void);
|
|
#else
|
|
static inline void r8a7779_init_pm_domains(void) {}
|
|
#endif /* CONFIG_PM */
|
|
|
|
extern struct smp_operations r8a7779_smp_ops;
|
|
|
|
#endif /* __ASM_R8A7779_H__ */
|