diff options
author | Haiying Wang <Haiying.Wang@freescale.com> | 2007-02-21 16:52:31 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-02-21 16:52:31 +0100 |
commit | 3a197b2fe49d6fa03978e60af2394efe9c70b527 (patch) | |
tree | 829eea16bc1c69fbf27545788bb104cda033f3e8 /include/asm-mips/io.h | |
parent | da04995c7dc6772013a9a0dc5c767f190c402478 (diff) | |
download | u-boot-imx-3a197b2fe49d6fa03978e60af2394efe9c70b527.zip u-boot-imx-3a197b2fe49d6fa03978e60af2394efe9c70b527.tar.gz u-boot-imx-3a197b2fe49d6fa03978e60af2394efe9c70b527.tar.bz2 |
[PATCH v3] Add sync to ensure flash_write_cmd is fully finished
Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
is fully finished. The sync() is defined in each CPU's io.h file. For
those CPUs which do not need sync for now, a dummy sync() is defined in
their io.h as well.
Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Diffstat (limited to 'include/asm-mips/io.h')
-rw-r--r-- | include/asm-mips/io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-mips/io.h b/include/asm-mips/io.h index 857fb03..cd4d5dc 100644 --- a/include/asm-mips/io.h +++ b/include/asm-mips/io.h @@ -447,4 +447,8 @@ extern void (*_dma_cache_inv)(unsigned long start, unsigned long size); #define dma_cache_wback(start,size) _dma_cache_wback(start,size) #define dma_cache_inv(start,size) _dma_cache_inv(start,size) +static inline void sync(void) +{ +} + #endif /* _ASM_IO_H */ |