diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-01-06 02:36:40 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-01-08 08:14:47 +0000 |
commit | 04b2bb61fde8246cc9c3c52d785963bb2744acbc (patch) | |
tree | c96741e1740cf4bc55049445760067fc1f3376df | |
parent | 1807cfbae9a0c08a1422add8ce3ca79f6aa9d1ad (diff) |
sb/intel/bd82x6x: Remove space in function definition
Just a small change to follow the code style.
Change-Id: Ie838b82e12627478ea721f426efc4d557feb6ae3
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49166
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/southbridge/intel/bd82x6x/early_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/bd82x6x/early_thermal.c b/src/southbridge/intel/bd82x6x/early_thermal.c index b3510ac521..46874b2dc4 100644 --- a/src/southbridge/intel/bd82x6x/early_thermal.c +++ b/src/southbridge/intel/bd82x6x/early_thermal.c @@ -16,7 +16,7 @@ static void write16p(uintptr_t addr, uint32_t val) write16((u16 *)addr, val); } -static uint16_t read16p (uintptr_t addr) +static uint16_t read16p(uintptr_t addr) { return read16((u16 *)addr); } |