diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:40 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:24:59 -0500 |
commit | 9d3915b2dfe9bf5c9b09ba9119a194ff87746107 (patch) | |
tree | c5ecc7d92164d0cbbb04bbce2500567b09058012 /board | |
parent | 1eb69ae498567bb0b62ee554647204e8245cdacc (diff) | |
download | u-boot-9d3915b2dfe9bf5c9b09ba9119a194ff87746107.zip u-boot-9d3915b2dfe9bf5c9b09ba9119a194ff87746107.tar.gz u-boot-9d3915b2dfe9bf5c9b09ba9119a194ff87746107.tar.bz2 |
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 'board')
-rw-r--r-- | board/cobra5272/flash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/cobra5272/flash.c b/board/cobra5272/flash.c index ea3ed73..6f36c26 100644 --- a/board/cobra5272/flash.c +++ b/board/cobra5272/flash.c @@ -167,7 +167,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last) cflag = icache_status(); icache_disable(); - iflag = disable_interrupts (); + iflag = disable_interrupts(); printf ("\n"); @@ -235,7 +235,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last) udelay (10000); if (iflag) - enable_interrupts (); + enable_interrupts(); if (cflag) icache_enable(); @@ -270,7 +270,7 @@ static int write_word (flash_info_t * info, ulong dest, ulong data) cflag = icache_status(); icache_disable(); - iflag = disable_interrupts (); + iflag = disable_interrupts(); MEM_FLASH_ADDR1 = CMD_UNLOCK1; MEM_FLASH_ADDR2 = CMD_UNLOCK2; @@ -301,7 +301,7 @@ static int write_word (flash_info_t * info, ulong dest, ulong data) rc = ERR_PROG_ERROR; if (iflag) - enable_interrupts (); + enable_interrupts(); if (cflag) icache_enable(); |