diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/mcffec.c | 4 | ||||
-rw-r--r-- | drivers/serial/mcfuart.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c index 2e0ddeb..3b81258 100644 --- a/drivers/net/mcffec.c +++ b/drivers/net/mcffec.c @@ -27,15 +27,15 @@ #include <common.h> #include <malloc.h> +#ifdef CONFIG_MCFFEC + #include <asm/fec.h> #include <asm/immap.h> #include <command.h> -#include <config.h> #include <net.h> #include <miiphy.h> -#ifdef CONFIG_MCFFEC #undef ET_DEBUG #undef MII_DEBUG diff --git a/drivers/serial/mcfuart.c b/drivers/serial/mcfuart.c index bc7077d..88f3eb1 100644 --- a/drivers/serial/mcfuart.c +++ b/drivers/serial/mcfuart.c @@ -28,12 +28,14 @@ */ #include <common.h> + +#ifdef CONFIG_MCFUART + #include <asm/immap.h> #include <asm/uart.h> DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_MCFUART extern void uart_port_conf(void); int serial_init(void) |