MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / asm-arm / hardware.h
blobd3067b6dd4fe422b3105f09fd7cbfc46d6928417
1 /*
2 * linux/include/asm-arm/hardware.h
4 * Copyright (C) 1996 Russell King
5 * Copyright (C) 2004 Hyok S. Choi
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Common hardware definitions
14 #ifndef __ASM_HARDWARE_H
15 #define __ASM_HARDWARE_H
17 #include <asm/arch/hardware.h>
19 #ifndef CONFIG_MMU
21 #ifndef __ASSEMBLY__
23 /* the machine dependent bootmem reserve and free routines */
24 #ifndef MACH_RESERVE_BOOTMEM
25 #define MACH_RESERVE_BOOTMEM()
26 #endif
28 #ifndef MACH_FREE_BOOTMEM
29 #define MACH_FREE_BOOTMEM()
30 #endif
32 /* by default, initmem is freed */
33 #ifndef DO_FREE_INITMEM
34 #define DO_FREE_INITMEM() (1)
35 #endif
37 #endif /* !__ASSEMBLY__ */
39 #endif /* !CONFIG_MMU */
41 #endif