1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-11-03 03:46:02 +01:00

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>
This commit is contained in:
Simon Glass
2019-11-14 12:57:40 -07:00
committed by Tom Rini
parent 1eb69ae498
commit 9d3915b2df
14 changed files with 35 additions and 35 deletions

View File

@@ -25,7 +25,7 @@
DECLARE_GLOBAL_DATA_PTR;
int interrupt_init (void)
int interrupt_init(void)
{
/*
* setup up stacks if necessary
@@ -35,11 +35,11 @@ int interrupt_init (void)
return 0;
}
void enable_interrupts (void)
void enable_interrupts(void)
{
return;
}
int disable_interrupts (void)
int disable_interrupts(void)
{
return 0;
}