direct-io.hg
changeset 3604:d03ad25af1a8
bitkeeper revision 1.1159.212.65 (42001ad5CoYcWQyfGjSHSJBFeqFrLg)
Make mmio_space() static inline.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
Signed-off-by: ian.pratt@cl.cam.ac.uk
Make mmio_space() static inline.
Signed-off-by: Arun Sharma <arun.sharma@intel.com>
Signed-off-by: ian.pratt@cl.cam.ac.uk
author | iap10@labyrinth.cl.cam.ac.uk |
---|---|
date | Wed Feb 02 00:12:05 2005 +0000 (2005-02-02) |
parents | ef59b38283a5 |
children | a920f0ced90f |
files | xen/include/asm-x86/vmx_platform.h |
line diff
1.1 --- a/xen/include/asm-x86/vmx_platform.h Tue Feb 01 22:32:01 2005 +0000 1.2 +++ b/xen/include/asm-x86/vmx_platform.h Wed Feb 02 00:12:05 2005 +0000 1.3 @@ -81,11 +81,10 @@ struct virutal_platform_def { 1.4 struct mi_per_cpu_info mpci; /* MMIO */ 1.5 }; 1.6 1.7 -extern int mmio_space(unsigned long); 1.8 extern void handle_mmio(unsigned long, unsigned long, unsigned long); 1.9 extern int vmx_setup_platform(struct exec_domain *, execution_context_t *); 1.10 1.11 -extern inline int mmio_space(unsigned long gpa) 1.12 +static inline int mmio_space(unsigned long gpa) 1.13 { 1.14 if (gpa >= VGA_SPACE_START && gpa < VGA_SPACE_END) { 1.15 return 1;