Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * linux/arch/arm/mach-at91/generic.h
0004  *
0005  *  Copyright (C) 2005 David Brownell
0006  */
0007 
0008 #ifndef _AT91_GENERIC_H
0009 #define _AT91_GENERIC_H
0010 
0011 #ifdef CONFIG_PM
0012 extern void __init at91rm9200_pm_init(void);
0013 extern void __init at91sam9_pm_init(void);
0014 extern void __init sam9x60_pm_init(void);
0015 extern void __init sama5_pm_init(void);
0016 extern void __init sama5d2_pm_init(void);
0017 extern void __init sama7_pm_init(void);
0018 #else
0019 static inline void __init at91rm9200_pm_init(void) { }
0020 static inline void __init at91sam9_pm_init(void) { }
0021 static inline void __init sam9x60_pm_init(void) { }
0022 static inline void __init sama5_pm_init(void) { }
0023 static inline void __init sama5d2_pm_init(void) { }
0024 static inline void __init sama7_pm_init(void) { }
0025 #endif
0026 
0027 #endif /* _AT91_GENERIC_H */