summaryrefslogtreecommitdiffstats
path: root/include/dataflash.h
diff options
context:
space:
mode:
authorIgor Grinberg <grinberg@compulab.co.il>2011-11-26 23:06:46 +0000
committerWolfgang Denk <wd@denx.de>2011-11-29 15:43:41 +0100
commitabdbd67cbcd58878860d83882b92228b9922484b (patch)
treeb3b0984e0f180d751f751b58653abfbce75a75e7 /include/dataflash.h
parent581a811c3fefd771f0eedb7af3b60ac86518a56b (diff)
downloadtalos-obmc-uboot-abdbd67cbcd58878860d83882b92228b9922484b.tar.gz
talos-obmc-uboot-abdbd67cbcd58878860d83882b92228b9922484b.zip
dataflash: fix parameters order in write_dataflash()
Fix parameters order in write_dataflash() function extern declaration in the header file. Parameters order, as in function definition, should be: addr_dest, addr_src, size. Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'include/dataflash.h')
-rw-r--r--include/dataflash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/dataflash.h b/include/dataflash.h
index 056e18b036..94f86b3a30 100644
--- a/include/dataflash.h
+++ b/include/dataflash.h
@@ -207,7 +207,8 @@ extern int addr2ram(ulong addr);
extern int dataflash_real_protect (int flag, unsigned long start_addr, unsigned long end_addr);
extern int addr_dataflash (unsigned long addr);
extern int read_dataflash (unsigned long addr, unsigned long size, char *result);
-extern int write_dataflash (unsigned long addr, unsigned long dest, unsigned long size);
+extern int write_dataflash(unsigned long addr_dest, unsigned long addr_src,
+ unsigned long size);
extern int AT91F_DataflashInit(void);
extern void dataflash_print_info (void);
OpenPOWER on IntegriCloud