common.h (de65d816aa44f9ddd79861ae21d75010cc1fd003) common.h (14e067c1a5280fe6fe5d3348a0bae87bc4da16db)
1/*
2 * Header for code common to all OMAP2+ machines.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *

--- 105 unchanged lines hidden (view full) ---

114#if defined(CONFIG_SOC_OMAP2420) || defined(CONFIG_SOC_OMAP2430)
115void omap2xxx_restart(char mode, const char *cmd);
116#else
117static inline void omap2xxx_restart(char mode, const char *cmd)
118{
119}
120#endif
121
1/*
2 * Header for code common to all OMAP2+ machines.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *

--- 105 unchanged lines hidden (view full) ---

114#if defined(CONFIG_SOC_OMAP2420) || defined(CONFIG_SOC_OMAP2430)
115void omap2xxx_restart(char mode, const char *cmd);
116#else
117static inline void omap2xxx_restart(char mode, const char *cmd)
118{
119}
120#endif
121
122#ifdef CONFIG_SOC_AM33XX
123void am33xx_restart(char mode, const char *cmd);
124#else
125static inline void am33xx_restart(char mode, const char *cmd)
126{
127}
128#endif
129
122#ifdef CONFIG_ARCH_OMAP3
123void omap3xxx_restart(char mode, const char *cmd);
124#else
125static inline void omap3xxx_restart(char mode, const char *cmd)
126{
127}
128#endif
129

--- 161 unchanged lines hidden ---
130#ifdef CONFIG_ARCH_OMAP3
131void omap3xxx_restart(char mode, const char *cmd);
132#else
133static inline void omap3xxx_restart(char mode, const char *cmd)
134{
135}
136#endif
137

--- 161 unchanged lines hidden ---