diff options
author | wdenk <wdenk> | 2005-04-13 10:02:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-04-13 10:02:42 +0000 |
commit | 2a8af1873894dae030813c11e77ccee476ac11f8 (patch) | |
tree | ed52fefa46b69e1ec04ce0cc45e66ff07e1fd103 /cpu | |
parent | e694e08a8b0b43e676c48867ca2cc28f4a7f2b84 (diff) | |
download | u-boot-imx-2a8af1873894dae030813c11e77ccee476ac11f8.zip u-boot-imx-2a8af1873894dae030813c11e77ccee476ac11f8.tar.gz u-boot-imx-2a8af1873894dae030813c11e77ccee476ac11f8.tar.bz2 |
* Fixes for TQM8560 board:
- fix clock rates
- remove debug messages
- fix flash sector protection
* Patch by Steven Scholz, 07 Apr 2005:
Fix warning in cpu/arm920t/at91rm9200/i2c.c
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm920t/at91rm9200/i2c.c | 4 | ||||
-rw-r--r-- | cpu/mpc85xx/cpu.c | 2 | ||||
-rw-r--r-- | cpu/mpc85xx/ether_fcc.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cpu/arm920t/at91rm9200/i2c.c b/cpu/arm920t/at91rm9200/i2c.c index 2743275..5692740 100644 --- a/cpu/arm920t/at91rm9200/i2c.c +++ b/cpu/arm920t/at91rm9200/i2c.c @@ -138,12 +138,12 @@ i2c_read (unsigned char chip, unsigned int addr, int alen, int i2c_write(unsigned char chip, unsigned int addr, int alen, - unsigned char *buffer, int len) + unsigned char *buffer, int len) { +#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW int i; unsigned char *buf; -#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW /* we only allow one address byte */ if (alen > 1) return 1; diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index fe678df..4a1ccb0 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -145,7 +145,7 @@ unsigned long get_tbclk (void) sys_info_t sys_info; get_sys_info(&sys_info); - return ((sys_info.freqSystemBus + 3L) / 4L); + return ((sys_info.freqSystemBus + 7L) / 8L); } diff --git a/cpu/mpc85xx/ether_fcc.c b/cpu/mpc85xx/ether_fcc.c index f78e5b4..c2f88f8 100644 --- a/cpu/mpc85xx/ether_fcc.c +++ b/cpu/mpc85xx/ether_fcc.c @@ -135,7 +135,7 @@ static RTXBD rtx __attribute__ ((aligned(8))); #error "rtx must be 64-bit aligned" #endif -#define ET_DEBUG +#undef ET_DEBUG static int fec_send(struct eth_device* dev, volatile void *packet, int length) { |