northbridge/intel/gm45: Add space around operators

Change-Id: I3781c36a3f354bfd54d20488b95d4f2307c3bce2
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16629
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Elyes HAOUAS 2016-09-17 20:40:04 +02:00 committed by Martin Roth
parent c021ffee45
commit 9a9c8dba8d
1 changed files with 3 additions and 3 deletions

View File

@ -226,15 +226,15 @@ static void enable_dev(device_t dev)
switch (pci_read_config32(dev_find_slot(0, PCI_DEVFN(0, 0)), /*D0F0_SKPD*/0xdc)) { switch (pci_read_config32(dev_find_slot(0, PCI_DEVFN(0, 0)), /*D0F0_SKPD*/0xdc)) {
case SKPAD_NORMAL_BOOT_MAGIC: case SKPAD_NORMAL_BOOT_MAGIC:
printk(BIOS_DEBUG, "Normal boot.\n"); printk(BIOS_DEBUG, "Normal boot.\n");
acpi_slp_type=0; acpi_slp_type = 0;
break; break;
case SKPAD_ACPI_S3_MAGIC: case SKPAD_ACPI_S3_MAGIC:
printk(BIOS_DEBUG, "S3 Resume.\n"); printk(BIOS_DEBUG, "S3 Resume.\n");
acpi_slp_type=3; acpi_slp_type = 3;
break; break;
default: default:
printk(BIOS_DEBUG, "Unknown boot method, assuming normal.\n"); printk(BIOS_DEBUG, "Unknown boot method, assuming normal.\n");
acpi_slp_type=0; acpi_slp_type = 0;
break; break;
} }
#endif #endif