diff options
author | Hugo Villeneuve <hugo.villeneuve@lyrtech.com> | 2008-07-11 15:10:10 -0400 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-07-14 23:40:55 +0200 |
commit | 3a9e7ba2ac14018c5dd1e78a7dd735571569c971 (patch) | |
tree | bc9514e6f2551dda02963124f78e109cbe938116 | |
parent | 348753d416cd2c9e7ec6520a544c8f33cf02a560 (diff) | |
download | u-boot-imx-3a9e7ba2ac14018c5dd1e78a7dd735571569c971.zip u-boot-imx-3a9e7ba2ac14018c5dd1e78a7dd735571569c971.tar.gz u-boot-imx-3a9e7ba2ac14018c5dd1e78a7dd735571569c971.tar.bz2 |
ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
ARM DaVinci: Remove duplicate definitions of MACH_TYPE
and prototype of i2c_init().
Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
-rw-r--r-- | board/davinci/dv-evm/dv_board.c | 3 | ||||
-rw-r--r-- | board/davinci/schmoogie/dv_board.c | 3 | ||||
-rw-r--r-- | board/davinci/sonata/dv_board.c | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/board/davinci/dv-evm/dv_board.c b/board/davinci/dv-evm/dv_board.c index 88b1e57..454ac21 100644 --- a/board/davinci/dv-evm/dv_board.c +++ b/board/davinci/dv-evm/dv_board.c @@ -29,11 +29,8 @@ #include <asm/arch/hardware.h> #include <asm/arch/emac_defs.h> -#define MACH_TYPE_DAVINCI_EVM 901 - DECLARE_GLOBAL_DATA_PTR; -extern void i2c_init(int speed, int slaveaddr); extern void timer_init(void); extern int eth_hw_init(void); extern phy_t phy; diff --git a/board/davinci/schmoogie/dv_board.c b/board/davinci/schmoogie/dv_board.c index 13d2195..529a437 100644 --- a/board/davinci/schmoogie/dv_board.c +++ b/board/davinci/schmoogie/dv_board.c @@ -29,11 +29,8 @@ #include <asm/arch/hardware.h> #include <asm/arch/emac_defs.h> -#define MACH_TYPE_SCHMOOGIE 1255 - DECLARE_GLOBAL_DATA_PTR; -extern void i2c_init(int speed, int slaveaddr); extern void timer_init(void); extern int eth_hw_init(void); extern phy_t phy; diff --git a/board/davinci/sonata/dv_board.c b/board/davinci/sonata/dv_board.c index e8665e5..2db40c8 100644 --- a/board/davinci/sonata/dv_board.c +++ b/board/davinci/sonata/dv_board.c @@ -29,11 +29,8 @@ #include <asm/arch/hardware.h> #include <asm/arch/emac_defs.h> -#define MACH_TYPE_SONATA 1254 - DECLARE_GLOBAL_DATA_PTR; -extern void i2c_init(int speed, int slaveaddr); extern void timer_init(void); extern int eth_hw_init(void); extern phy_t phy; |