Fix incorrect address test in AT91F_DataflashSelect().

Signed-off-by: Stelian Pop <[EMAIL PROTECTED]>
---
 drivers/mtd/dataflash.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c
index 4084ff7..2421407 100644
--- a/drivers/mtd/dataflash.c
+++ b/drivers/mtd/dataflash.c
@@ -309,7 +309,7 @@ AT91PS_DataFlash AT91F_DataflashSelect (AT91PS_DataFlash 
pFlash,
 
        for (i = 0; i < CFG_MAX_DATAFLASH_BANKS; i++)
                if ( dataflash_info[i].id
-                       && ((((int) addr) & 0xFF000000) ==
+                       && ((((int) *addr) & 0xFF000000) ==
                        dataflash_info[i].logical_address)) {
                        addr_valid = 1;
                        break;
-- 
1.5.3.3


-- 
Stelian Pop <[EMAIL PROTECTED]>


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to