northbridge/intel: Add required space before opening parenthesis '('
Change-Id: I53208ce5db06d2c65f954e6d59222924ab87722e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16304 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Martin Roth
parent
5a7e72f1ae
commit
12df950583
@@ -697,12 +697,12 @@ static struct dimm_size spd_get_dimm_size(unsigned int device)
|
||||
/* It is possible to partially use larger then supported
|
||||
* modules by setting them to a supported size.
|
||||
*/
|
||||
if(sz.side1 > 128) {
|
||||
if (sz.side1 > 128) {
|
||||
PRINT_DEBUG("Side1 was %dMB but only 128MB will be used.\n",
|
||||
sz.side1);
|
||||
sz.side1 = 128;
|
||||
|
||||
if(sz.side2 > 128) {
|
||||
if (sz.side2 > 128) {
|
||||
PRINT_DEBUG("Side2 was %dMB but only 128MB will be used.\n",
|
||||
sz.side2);
|
||||
sz.side2 = 128;
|
||||
|
Reference in New Issue
Block a user