diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-07-08 12:38:11 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-07-09 09:29:00 +0000 |
commit | 95bca33efa280e606f7c6d41541cec67c0eb227f (patch) | |
tree | 3c0d3c2d9a53138a097d92b6a43c975046221e13 /src/mainboard/supermicro/h8scm_fam10 | |
parent | c92f5f218f7287ecff4be65b4c6b5b5f24e90cb7 (diff) | |
download | coreboot-95bca33efa280e606f7c6d41541cec67c0eb227f.tar.xz |
src/mb: Use "foo *bar" instead of "foo* bar"
Change-Id: Iedc2e48349e40e94863c8080d11e11dbe6084c9d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/27406
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/supermicro/h8scm_fam10')
-rw-r--r-- | src/mainboard/supermicro/h8scm_fam10/acpi_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/supermicro/h8scm_fam10/acpi_tables.c b/src/mainboard/supermicro/h8scm_fam10/acpi_tables.c index 165fd81e03..7305cf85a9 100644 --- a/src/mainboard/supermicro/h8scm_fam10/acpi_tables.c +++ b/src/mainboard/supermicro/h8scm_fam10/acpi_tables.c @@ -61,7 +61,7 @@ unsigned long acpi_fill_madt(unsigned long current) return current; } -unsigned long acpi_fill_ivrs_ioapic(acpi_ivrs_t* ivrs, unsigned long current) +unsigned long acpi_fill_ivrs_ioapic(acpi_ivrs_t *ivrs, unsigned long current) { uint8_t *p; |