diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-09-10 10:30:29 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-09-11 15:52:56 +0000 |
commit | 9d450b2248aa08a009f06935e01df7f66edc1780 (patch) | |
tree | 855440662bc52565c11d489cf849bc4f6c593688 /src/northbridge/intel/x4x | |
parent | 98a9b34854f8ce46be908956dee1661b0a4d36a3 (diff) |
nb/intel: Remove space between function name and '('
Change-Id: Ibffaf86f9e32d747c8f2f7a3643df8935fb00047
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77763
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/northbridge/intel/x4x')
-rw-r--r-- | src/northbridge/intel/x4x/raminit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/x4x/raminit.h b/src/northbridge/intel/x4x/raminit.h index c2011a69ba..750c726dca 100644 --- a/src/northbridge/intel/x4x/raminit.h +++ b/src/northbridge/intel/x4x/raminit.h @@ -76,7 +76,7 @@ #define FOR_EACH_BYTELANE(l) \ for (l = 0; l < TOTAL_BYTELANES; l++) #define FOR_EACH_POPULATED_CHANNEL_AND_BYTELANE(dimms, ch, l) \ - FOR_EACH_POPULATED_CHANNEL (dimms, ch) FOR_EACH_BYTELANE(l) + FOR_EACH_POPULATED_CHANNEL(dimms, ch) FOR_EACH_BYTELANE(l) #define DDR3_MAX_CAS 18 |