forked from Minki/linux
e7f2c8c1f0
For all uapi headers, need use "_UAPI" prefix for its guard macro (which will be stripped by "scripts/headers_installer.sh"). Also remove redundant files (bitsperlong.h, errno.h, fcntl.h, ioctl.h, ioctls.h, ipcbuf.h, kvm_para.h, mman.h, poll.h, resource.h, siginfo.h, statfs.h, and unistd.h) which are already in Kbuild. Also be sure that all "#endif" only have one empty line above, and each file has guard macro. Signed-off-by: Chen Gang <gang.chen@asianux.com> Signed-off-by: Hans-Christian Egtvedt <hegtvedt@cisco.com>
12 lines
272 B
C
12 lines
272 B
C
#ifndef _UAPI__ASM_AVR32_CACHECTL_H
|
|
#define _UAPI__ASM_AVR32_CACHECTL_H
|
|
|
|
/*
|
|
* Operations that can be performed through the cacheflush system call
|
|
*/
|
|
|
|
/* Clean the data cache, then invalidate the icache */
|
|
#define CACHE_IFLUSH 0
|
|
|
|
#endif /* _UAPI__ASM_AVR32_CACHECTL_H */
|