u-boot-brain/include/asm-m68k/io.h
Haiying Wang 3a197b2fe4 [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>
2007-02-21 16:52:31 +01:00

9 lines
116 B
C

#ifndef __ASM_M68K_IO_H_
#define __ASM_M68K_IO_H_
static inline void sync(void)
{
}
#endif /* __ASM_M68K_IO_H_ */