diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-06-17 18:37:08 +1000 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-06-25 11:32:25 +0200 |
commit | 0ddb82671cae52571e92b7b22cf088939d887d50 (patch) | |
tree | b091186d484edea1ab137eeef1ceebc4f45db941 /src/console/vtxprintf.c | |
parent | 6c99250c3fb97ccaa03d4f0c158caffdc53ff995 (diff) |
src/console: Sanitize headers and IS_ENABLED usage
Alphabetise headers and remove any #if CONFIG_ guards around them.
Use #if IS_ENABLED(CONFIG_FOO) over #if CONFIG_FOO where applicable.
Change-Id: I2a616bcfb8470a1fa21c9e26271e81cca835272a
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/6057
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/console/vtxprintf.c')
-rw-r--r-- | src/console/vtxprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c index 23db037f5d..b515fb8c7f 100644 --- a/src/console/vtxprintf.c +++ b/src/console/vtxprintf.c @@ -4,9 +4,9 @@ * Copyright (C) 1991, 1992 Linus Torvalds */ -#include <string.h> #include <console/console.h> #include <console/vtxprintf.h> +#include <string.h> #define call_tx(x) tx_byte(x, data) |