mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
3a197b2fe4
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>
8 lines
116 B
C
8 lines
116 B
C
#ifndef __ASM_M68K_IO_H_
|
|
#define __ASM_M68K_IO_H_
|
|
|
|
static inline void sync(void)
|
|
{
|
|
}
|
|
|
|
#endif /* __ASM_M68K_IO_H_ */
|