nb/intel/gm45/raminit.c: Fix indent for 'if' statement

Change-Id: I316ae56321da1183caefeac3163b8909d1a554b1
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61474
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Elyes HAOUAS 2022-01-29 09:33:08 +01:00 committed by Felix Held
parent a04666110a
commit 7503cd1c88
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ void get_gmch_info(sysinfo_t *sysinfo)
{
sysinfo->stepping = pci_read_config8(PCI_DEV(0, 0, 0), PCI_CLASS_REVISION);
if ((sysinfo->stepping > STEPPING_B3) &&
(sysinfo->stepping != STEPPING_CONVERSION_A1))
die("Unknown stepping.\n");
(sysinfo->stepping != STEPPING_CONVERSION_A1))
die("Unknown stepping.\n");
if (sysinfo->stepping <= STEPPING_B3)
printk(BIOS_DEBUG, "Stepping %c%d\n", 'A' + sysinfo->stepping / 4, sysinfo->stepping % 4);
else