Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/49166 )
Change subject: sb/intel/bd82x6x: Remove space in function definition ......................................................................
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 --- M src/southbridge/intel/bd82x6x/early_thermal.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/49166/1
diff --git a/src/southbridge/intel/bd82x6x/early_thermal.c b/src/southbridge/intel/bd82x6x/early_thermal.c index b3510ac5..46874b2 100644 --- a/src/southbridge/intel/bd82x6x/early_thermal.c +++ b/src/southbridge/intel/bd82x6x/early_thermal.c @@ -16,7 +16,7 @@ write16((u16 *)addr, val); }
-static uint16_t read16p (uintptr_t addr) +static uint16_t read16p(uintptr_t addr) { return read16((u16 *)addr); }