diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:11:02 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-22 13:46:09 +0000 |
commit | 3a9980767e4ce054630cf7bb92fdb8a5405de53c (patch) | |
tree | 646488e023c5e6fbd6c7d0781168b3116cba9c97 /src/northbridge/intel/gm45 | |
parent | ab6d94430e411f8549292d0782c07d4bbf7c19d8 (diff) |
src/northbridge: Remove unnecessary space after casts
Change-Id: If6c1a17d15e24ecdc56b0cc9cb7e7dc7d6e6936b
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69813
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/gm45')
-rw-r--r-- | src/northbridge/intel/gm45/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/gm45/acpi.c b/src/northbridge/intel/gm45/acpi.c index 30d3fedb15..246fe9aaca 100644 --- a/src/northbridge/intel/gm45/acpi.c +++ b/src/northbridge/intel/gm45/acpi.c @@ -63,7 +63,7 @@ unsigned long northbridge_write_acpi_tables(const struct device *device, current = start; printk(BIOS_DEBUG, "ACPI: * DMAR\n"); - dmar = (acpi_dmar_t *) current; + dmar = (acpi_dmar_t *)current; acpi_create_dmar(dmar, 0, acpi_fill_dmar); current += dmar->header.length; current = acpi_align_current(current); |