diff options
author | Sekhar Nori <nsekhar@ti.com> | 2009-07-09 10:56:38 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-08-26 03:57:01 -0400 |
commit | 6077d265324f13a4b7db30eb70cabed07fd58936 (patch) | |
tree | 65794fcce7edc6cd70ef63caca93a966c7d8e36c /arch/arm/mach-davinci/include/mach/system.h | |
parent | baf09a4cd029c10fd46ef3d1505e2fe8cddcb48e (diff) |
davinci: make arch_idle and arch_reset as inline functions
Make arch_idle and arch_reset inline as inline function.
Not having them inline leads to a warning of this sort when only
one of these functions is used:
arch/arm/mach-davinci/include/mach/system.h:24: warning: 'arch_reset' \
defined but not used
boot, re-boot tested on OMAP-L138 EVM
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/include/mach/system.h')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/system.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-davinci/include/mach/system.h b/arch/arm/mach-davinci/include/mach/system.h index b7e7036674fa..8e4f10fe1263 100644 --- a/arch/arm/mach-davinci/include/mach/system.h +++ b/arch/arm/mach-davinci/include/mach/system.h | |||
@@ -16,12 +16,12 @@ | |||
16 | 16 | ||
17 | extern void davinci_watchdog_reset(void); | 17 | extern void davinci_watchdog_reset(void); |
18 | 18 | ||
19 | static void arch_idle(void) | 19 | static inline void arch_idle(void) |
20 | { | 20 | { |
21 | cpu_do_idle(); | 21 | cpu_do_idle(); |
22 | } | 22 | } |
23 | 23 | ||
24 | static void arch_reset(char mode, const char *cmd) | 24 | static inline void arch_reset(char mode, const char *cmd) |
25 | { | 25 | { |
26 | davinci_watchdog_reset(); | 26 | davinci_watchdog_reset(); |
27 | } | 27 | } |