diff options
author | Heiko Schocher <hs@pollux.denx.de> | 2007-03-21 08:45:17 +0100 |
---|---|---|
committer | Heiko Schocher <hs@pollux.denx.de> | 2007-03-21 08:45:17 +0100 |
commit | 07e82cb2e284a893df6693f2a1337ab2c47bf6a1 (patch) | |
tree | 4ba9f6b0c706b16cd7900954e1cd44800abb9699 /board | |
parent | 87e0662762b78ed7731f14add60ba0edb0479252 (diff) | |
download | u-boot-imx-07e82cb2e284a893df6693f2a1337ab2c47bf6a1.zip u-boot-imx-07e82cb2e284a893df6693f2a1337ab2c47bf6a1.tar.gz u-boot-imx-07e82cb2e284a893df6693f2a1337ab2c47bf6a1.tar.bz2 |
[PATCH] TQM8272: dont change the bits given from the HRCW
for the SIUMCR and BCR Register.
Fix the calculation for the EEprom Size
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/tqm8272/tqm8272.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/tqm8272/tqm8272.c b/board/tqm8272/tqm8272.c index 8257c77..70d1bb8 100644 --- a/board/tqm8272/tqm8272.c +++ b/board/tqm8272/tqm8272.c @@ -768,7 +768,7 @@ int analyse_hwib (void) p +=1; p +=1; /* connector */ if (*p != '0') { - hw->eeprom = 0x100 << (*p - 'A'); + hw->eeprom = 0x1000 << (*p - 'A'); } p++; |