diff options
Diffstat (limited to 'arch/x86/include/asm/xen/hypercall.h')
| -rw-r--r-- | arch/x86/include/asm/xen/hypercall.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/x86/include/asm/xen/hypercall.h b/arch/x86/include/asm/xen/hypercall.h index 0575f5863b7f..e5e0fe10c692 100644 --- a/arch/x86/include/asm/xen/hypercall.h +++ b/arch/x86/include/asm/xen/hypercall.h @@ -281,13 +281,13 @@ HYPERVISOR_callback_op(int cmd, void *arg)  	return _hypercall2(int, callback_op, cmd, arg);  } -static inline int +static __always_inline int  HYPERVISOR_set_debugreg(int reg, unsigned long value)  {  	return _hypercall2(int, set_debugreg, reg, value);  } -static inline unsigned long +static __always_inline unsigned long  HYPERVISOR_get_debugreg(int reg)  {  	return _hypercall1(unsigned long, get_debugreg, reg); |