aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/e820.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-11-23 17:44:39 -0500
committerH. Peter Anvin <hpa@zytor.com>2009-11-23 20:09:59 -0500
commit65f116f5f16dc3371fce24fb24bc4843b5380ba5 (patch)
tree5937b8af200ae7dbaa7df0b21f448b1149518ffe /arch/x86/include/asm/e820.h
parent8a27138924f64d2f30c1022f909f74480046bc3f (diff)
x86: Change is_ISA_range() into an inline function
Change is_ISA_range() from a macro to an inline function. This makes it type safe, and also allows it to be assigned to a function pointer if necessary. Signed-off-by: H. Peter Anvin <hpa@zytor.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> LKML-Reference: <20091119202341.GA4420@sgi.com>
Diffstat (limited to 'arch/x86/include/asm/e820.h')
-rw-r--r--arch/x86/include/asm/e820.h19
1 files changed, 12 insertions, 7 deletions
diff --git a/arch/x86/include/asm/e820.h b/arch/x86/include/asm/e820.h
index 40b4e614fe71..68b4e0ec1950 100644
--- a/arch/x86/include/asm/e820.h
+++ b/arch/x86/include/asm/e820.h
@@ -61,6 +61,12 @@ struct e820map {
61 struct e820entry map[E820_X_MAX]; 61 struct e820entry map[E820_X_MAX];
62}; 62};
63 63
64#define ISA_START_ADDRESS 0xa0000
65#define ISA_END_ADDRESS 0x100000
66
67#define BIOS_BEGIN 0x000a0000
68#define BIOS_END 0x00100000
69
64#ifdef __KERNEL__ 70#ifdef __KERNEL__
65/* see comment in arch/x86/kernel/e820.c */ 71/* see comment in arch/x86/kernel/e820.c */
66extern struct e820map e820; 72extern struct e820map e820;
@@ -126,15 +132,14 @@ extern void e820_reserve_resources(void);
126extern void e820_reserve_resources_late(void); 132extern void e820_reserve_resources_late(void);
127extern void setup_memory_map(void); 133extern void setup_memory_map(void);
128extern char *default_machine_specific_memory_setup(void); 134extern char *default_machine_specific_memory_setup(void);
129#endif /* __KERNEL__ */
130#endif /* __ASSEMBLY__ */
131 135
132#define ISA_START_ADDRESS 0xa0000 136static inline bool is_ISA_range(u64 s, u64 e)
133#define ISA_END_ADDRESS 0x100000 137{
134#define is_ISA_range(s, e) ((s) >= ISA_START_ADDRESS && (e) < ISA_END_ADDRESS) 138 return s >= ISA_START_ADDRESS && e < ISA_END_ADDRESS;
139}
135 140
136#define BIOS_BEGIN 0x000a0000 141#endif /* __KERNEL__ */
137#define BIOS_END 0x00100000 142#endif /* __ASSEMBLY__ */
138 143
139#ifdef __KERNEL__ 144#ifdef __KERNEL__
140#include <linux/ioport.h> 145#include <linux/ioport.h>