diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-22 12:51:27 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-06-04 08:52:13 +0000 |
commit | 448d9fb4310eb8c390020c64af703060ab3545a6 (patch) | |
tree | a2b820d5aee80f3de5798584c257c9ec894ffa57 /src/mainboard | |
parent | 7154ef2fe155ce34517c8f893ffec6bc1500e6ac (diff) |
src: Use "foo *bar" instead of "foo* bar"
Change-Id: Ib2bb6cc80ac2bdc389c60c7ffac4bba937f0fca8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26461
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/asus/kfsn4-dre/romstage.c | 3 | ||||
-rw-r--r-- | src/mainboard/intel/kunimitsu/spd/spd_util.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mainboard/asus/kfsn4-dre/romstage.c b/src/mainboard/asus/kfsn4-dre/romstage.c index 105dacfa60..56a6bdffd5 100644 --- a/src/mainboard/asus/kfsn4-dre/romstage.c +++ b/src/mainboard/asus/kfsn4-dre/romstage.c @@ -118,7 +118,8 @@ static const unsigned int ctrl_conf_enable_msi_mapping[] = { RES_PCI_IO, PCI_ADDR(0, 0, 0, 0xe0), ~(0x00000000), 0x00010000, /* Enable MSI mapping on host bridge -- without this Linux cannot use the network device MSI interrupts! */ }; -static void ck804_control(const unsigned int* values, u32 size, uint8_t bus_unit_id) +static void ck804_control(const unsigned int *values, u32 size, + uint8_t bus_unit_id) { unsigned busn[4], io_base[4]; int i, ck804_num = 0; diff --git a/src/mainboard/intel/kunimitsu/spd/spd_util.c b/src/mainboard/intel/kunimitsu/spd/spd_util.c index a17b519919..676f84d01c 100644 --- a/src/mainboard/intel/kunimitsu/spd/spd_util.c +++ b/src/mainboard/intel/kunimitsu/spd/spd_util.c @@ -75,7 +75,7 @@ void mainboard_fill_rcomp_strength_data(void *rcomp_strength_ptr) uintptr_t mainboard_get_spd_data(void) { - char* spd_file; + char *spd_file; int spd_index, spd_span; size_t spd_file_len; |