~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/x86/xen/xen-ops.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
#ifdef CONFIG_PARAVIRT_SPINLOCKS
76
76
void __init xen_init_spinlocks(void);
77
 
__cpuinit void xen_init_lock_cpu(int cpu);
 
77
void __cpuinit xen_init_lock_cpu(int cpu);
78
78
void xen_uninit_lock_cpu(int cpu);
79
79
#else
80
80
static inline void xen_init_spinlocks(void)
88
88
}
89
89
#endif
90
90
 
 
91
struct dom0_vga_console_info;
 
92
 
 
93
#ifdef CONFIG_XEN_DOM0
 
94
void __init xen_init_vga(const struct dom0_vga_console_info *, size_t size);
 
95
#else
 
96
static inline void __init xen_init_vga(const struct dom0_vga_console_info *info,
 
97
                                       size_t size)
 
98
{
 
99
}
 
100
#endif
 
101
 
91
102
/* Declare an asm function, along with symbols needed to make it
92
103
   inlineable */
93
104
#define DECL_ASM(ret, name, ...)                \