diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2011-10-13 05:34:59 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-10-27 21:56:32 +0200 |
commit | 77f11a99e14ce10ebc3b26a39a976a0827b88f86 (patch) | |
tree | d1c7eefc9478cbede388e65978521e877a614b58 /arch/arm/cpu/arm926ejs/mx27/reset.c | |
parent | f8f96129bf4044fe980d6096d45e69b953d87041 (diff) |
imx: fix coding style
Fix checkpatch warning and errors in several i.MX related files.
While at it also address a checkpatch warning at arch/arm/cpu/armv7/mx5/soc.c
regarding the usage of extern in a C file.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'arch/arm/cpu/arm926ejs/mx27/reset.c')
-rw-r--r-- | arch/arm/cpu/arm926ejs/mx27/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/arm926ejs/mx27/reset.c b/arch/arm/cpu/arm926ejs/mx27/reset.c index 6c54eafd37..cc0a33ed55 100644 --- a/arch/arm/cpu/arm926ejs/mx27/reset.c +++ b/arch/arm/cpu/arm926ejs/mx27/reset.c @@ -39,7 +39,7 @@ /* * Reset the cpu by setting up the watchdog timer and let it time out */ -void reset_cpu (ulong ignored) +void reset_cpu(ulong ignored) { struct wdog_regs *regs = (struct wdog_regs *)IMX_WDT_BASE; /* Disable watchdog and set Time-Out field to 0 */ |