diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-10-03 21:54:16 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-10-07 18:08:03 +0200 |
commit | 035df005c5b9b473c2d61601c098792a34527a52 (patch) | |
tree | 0c2afbd8f6dc4d773ee4a720a4348ba254a78104 /src/southbridge/amd | |
parent | c44fb50185571b6bdf4febcc4cc1476a79c67ae2 (diff) | |
download | coreboot-035df005c5b9b473c2d61601c098792a34527a52.tar.xz |
src/southbridge: Remove whitespace after sizeof
Change-Id: Ic3b599d49a4c03ad8035c558b975f31cb91d253b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16862
Tested-by: build bot (Jenkins)
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/southbridge/amd')
-rw-r--r-- | src/southbridge/amd/cimx/sb700/AmdSbLib.h | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb800/AmdSbLib.h | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb900/AmdSbLib.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/amd/cimx/sb700/AmdSbLib.h b/src/southbridge/amd/cimx/sb700/AmdSbLib.h index dc5d19aedb..8dd796821c 100644 --- a/src/southbridge/amd/cimx/sb700/AmdSbLib.h +++ b/src/southbridge/amd/cimx/sb700/AmdSbLib.h @@ -18,7 +18,7 @@ typedef signed char *va_list; #ifndef _INTSIZEOF - #define _INTSIZEOF (n) ( (sizeof (n) + sizeof (UINTN) - 1) & ~(sizeof (UINTN) - 1) ) + #define _INTSIZEOF (n) ( (sizeof(n) + sizeof(UINTN) - 1) & ~(sizeof(UINTN) - 1) ) #endif // Also support coding convention rules for var arg macros diff --git a/src/southbridge/amd/cimx/sb800/AmdSbLib.h b/src/southbridge/amd/cimx/sb800/AmdSbLib.h index 68aef32458..cc75353f3d 100644 --- a/src/southbridge/amd/cimx/sb800/AmdSbLib.h +++ b/src/southbridge/amd/cimx/sb800/AmdSbLib.h @@ -22,7 +22,7 @@ typedef signed char *va_list; #ifndef _INTSIZEOF - #define _INTSIZEOF (n) ( (sizeof (n) + sizeof (UINTN) - 1) & ~(sizeof (UINTN) - 1) ) + #define _INTSIZEOF (n) ( (sizeof(n) + sizeof(UINTN) - 1) & ~(sizeof(UINTN) - 1) ) #endif // Also support coding convention rules for var arg macros diff --git a/src/southbridge/amd/cimx/sb900/AmdSbLib.h b/src/southbridge/amd/cimx/sb900/AmdSbLib.h index 68aef32458..cc75353f3d 100644 --- a/src/southbridge/amd/cimx/sb900/AmdSbLib.h +++ b/src/southbridge/amd/cimx/sb900/AmdSbLib.h @@ -22,7 +22,7 @@ typedef signed char *va_list; #ifndef _INTSIZEOF - #define _INTSIZEOF (n) ( (sizeof (n) + sizeof (UINTN) - 1) & ~(sizeof (UINTN) - 1) ) + #define _INTSIZEOF (n) ( (sizeof(n) + sizeof(UINTN) - 1) & ~(sizeof(UINTN) - 1) ) #endif // Also support coding convention rules for var arg macros |