diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-11-30 14:59:52 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-12-08 19:46:53 +0100 |
commit | 530f677cdc5de0cac94d00ee58037063ecb6cd64 (patch) | |
tree | 9f4e298f696cc6b6ece1878f8c280d524b661c95 /src/cpu/ti/am335x | |
parent | 3ec149dd7e72bf33fff2ce6c6ae350a6707c264e (diff) |
buildsystem: Drop explicit (k)config.h includes
We have kconfig.h auto-included and it pulls config.h too.
Change-Id: I665a0a168b0d4d3b8f3a27203827b542769988da
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/17655
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/ti/am335x')
-rw-r--r-- | src/cpu/ti/am335x/header.c | 1 | ||||
-rw-r--r-- | src/cpu/ti/am335x/pinmux.c | 1 | ||||
-rw-r--r-- | src/cpu/ti/am335x/uart.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/ti/am335x/header.c b/src/cpu/ti/am335x/header.c index 6837ef8c85..d59e29749d 100644 --- a/src/cpu/ti/am335x/header.c +++ b/src/cpu/ti/am335x/header.c @@ -12,7 +12,6 @@ * GNU General Public License for more details. */ -#include <config.h> #include <stddef.h> #include <stdint.h> #include <symbols.h> diff --git a/src/cpu/ti/am335x/pinmux.c b/src/cpu/ti/am335x/pinmux.c index 6fea9ad9c8..1e45142145 100644 --- a/src/cpu/ti/am335x/pinmux.c +++ b/src/cpu/ti/am335x/pinmux.c @@ -16,7 +16,6 @@ #include "pinmux.h" #include <arch/io.h> -#include <config.h> static struct am335x_pinmux_regs *regs = (struct am335x_pinmux_regs *)(uintptr_t)AM335X_PINMUX_REG_ADDR; diff --git a/src/cpu/ti/am335x/uart.c b/src/cpu/ti/am335x/uart.c index a329298b8a..45a693a953 100644 --- a/src/cpu/ti/am335x/uart.c +++ b/src/cpu/ti/am335x/uart.c @@ -13,7 +13,6 @@ */ #include <stdlib.h> -#include <config.h> #include <types.h> #include <console/uart.h> #include <arch/io.h> |