1234567891011121314151617181920212223242526 |
- #ifndef _NAS782X_CPU_H
- #define _NAS782X_CPU_H
- #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
- #include <asm/types.h>
- #include <asm/io.h>
- #endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */
- #include <asm/arch/hardware.h>
- #include <asm/arch/timer.h>
- #ifndef __KERNEL_STRICT_NAMES
- #ifndef __ASSEMBLY__
- #define BIT(x) (1 << (x))
- /* fix "implicit declaration of function" warnning */
- void *memalign(size_t alignment, size_t bytes);
- void free(void* mem);
- void *malloc(size_t bytes);
- void *calloc(size_t n, size_t elem_size);
- #endif /* __ASSEMBLY__ */
- #endif /* __KERNEL_STRICT_NAMES */
- #endif /* _NAS782X_CPU_H */
|