diff options
Diffstat (limited to 'board/keymile')
-rw-r--r-- | board/keymile/common/common.c | 4 | ||||
-rw-r--r-- | board/keymile/mgcoge/mgcoge.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 85538d0..8564b9c 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -22,7 +22,7 @@ */ #include <common.h> -#if defined(CONFIG_MGCOGE) +#if defined(CONFIG_MGCOGE) || defined(CONFIG_MGCOGE2NE) #include <mpc8260.h> #endif #include <ioports.h> @@ -343,7 +343,7 @@ int ivm_read_eeprom(void) #define DELAY_ABORT_SEQ 62 #define DELAY_HALF_PERIOD (500 / (CONFIG_SYS_I2C_SPEED / 1000)) -#if defined(CONFIG_MGCOGE) +#if defined(CONFIG_MGCOGE) || defined(CONFIG_MGCOGE2NE) #define SDA_MASK 0x00010000 #define SCL_MASK 0x00020000 static void set_pin(int state, unsigned long mask) diff --git a/board/keymile/mgcoge/mgcoge.c b/board/keymile/mgcoge/mgcoge.c index ee34705..838f24b 100644 --- a/board/keymile/mgcoge/mgcoge.c +++ b/board/keymile/mgcoge/mgcoge.c @@ -284,7 +284,11 @@ phys_size_t initdram(int board_type) int checkboard(void) { +#if defined(CONFIG_MGCOGE) puts("Board: Keymile mgcoge"); +#else + puts("Board: Keymile mgcoge2ne"); +#endif if (ethernet_present()) puts(" with PIGGY."); puts("\n"); |