src/northbridge: Use "foo *bar" instead of "foo* bar"
Change-Id: Iaf86a0c91da089b486bd39518e5c8216163bf8ec Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27407 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
95bca33efa
commit
fd051dc018
|
@ -90,7 +90,8 @@ static const event_string_decode_t event_string_decodes[] = {
|
|||
{ HT_EVENT_HW_HTCRC, "HT_EVENT_HW_HTCRC" }
|
||||
};
|
||||
|
||||
static const char * event_string_decode(uint32_t event) {
|
||||
static const char *event_string_decode(uint32_t event)
|
||||
{
|
||||
uint32_t i;
|
||||
for (i = 0; i < ARRAY_SIZE(event_string_decodes); i++)
|
||||
if (event_string_decodes[i].code == event)
|
||||
|
|
Loading…
Reference in New Issue