mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
67146942ef
Add support and pm init config for sam9x7 SoC. Signed-off-by: Varshini Rajendran <varshini.rajendran@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/20240729070659.1990506-1-varshini.rajendran@microchip.com Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
29 lines
896 B
C
29 lines
896 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* linux/arch/arm/mach-at91/generic.h
|
|
*
|
|
* Copyright (C) 2005 David Brownell
|
|
*/
|
|
|
|
#ifndef _AT91_GENERIC_H
|
|
#define _AT91_GENERIC_H
|
|
|
|
#ifdef CONFIG_PM
|
|
extern void __init at91rm9200_pm_init(void);
|
|
extern void __init at91sam9_pm_init(void);
|
|
extern void __init sam9x60_pm_init(void);
|
|
extern void __init sam9x7_pm_init(void);
|
|
extern void __init sama5_pm_init(void);
|
|
extern void __init sama5d2_pm_init(void);
|
|
extern void __init sama7_pm_init(void);
|
|
#else
|
|
static inline void __init at91rm9200_pm_init(void) { }
|
|
static inline void __init at91sam9_pm_init(void) { }
|
|
static inline void __init sam9x60_pm_init(void) { }
|
|
static inline void __init sam9x7_pm_init(void) { }
|
|
static inline void __init sama5_pm_init(void) { }
|
|
static inline void __init sama5d2_pm_init(void) { }
|
|
static inline void __init sama7_pm_init(void) { }
|
|
#endif
|
|
|
|
#endif /* _AT91_GENERIC_H */
|