diff options
author | Simon Glass | 2019-11-14 12:57:40 -0700 |
---|---|---|
committer | Tom Rini | 2019-12-02 18:24:59 -0500 |
commit | 9d3915b2dfe9bf5c9b09ba9119a194ff87746107 (patch) | |
tree | c5ecc7d92164d0cbbb04bbce2500567b09058012 /arch/sh/cpu/sh4 | |
parent | 1eb69ae498567bb0b62ee554647204e8245cdacc (diff) |
arm: powerpc: Tidy up code style for interrupt functions
Remove the unwanted space before the bracket.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/sh/cpu/sh4')
-rw-r--r-- | arch/sh/cpu/sh4/interrupts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/cpu/sh4/interrupts.c b/arch/sh/cpu/sh4/interrupts.c index ff7470ecccb..5982aad54eb 100644 --- a/arch/sh/cpu/sh4/interrupts.c +++ b/arch/sh/cpu/sh4/interrupts.c @@ -6,16 +6,16 @@ #include <common.h> -int interrupt_init (void) +int interrupt_init(void) { return 0; } -void enable_interrupts (void) +void enable_interrupts(void) { } -int disable_interrupts (void){ +int disable_interrupts(void){ return 0; } |