diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-03-04 07:05:32 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2009-03-26 13:37:54 -0400 |
commit | e8c3b42057be44cff9dd225bd9930956c5f34776 (patch) | |
tree | d8d7e2f5eaad9e901b6970d81fcd0c716d2af7f2 | |
parent | 8e0ee43bc2c3e19db56a4adaa9a9b04ce885cd84 (diff) |
ia64/pv_ops/xen: use __initconst instead of __initdata for const data
use __initconst instead of __initdata for const data like
ec8148de85a73a3be397a59b6d8f4f32cf2dd254
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r-- | arch/ia64/xen/xen_pv_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/xen/xen_pv_ops.c b/arch/ia64/xen/xen_pv_ops.c index 936cff3c96e0..fa3b967e69cb 100644 --- a/arch/ia64/xen/xen_pv_ops.c +++ b/arch/ia64/xen/xen_pv_ops.c | |||
@@ -260,7 +260,7 @@ xen_intrin_local_irq_restore(unsigned long mask) | |||
260 | xen_rsm_i(); | 260 | xen_rsm_i(); |
261 | } | 261 | } |
262 | 262 | ||
263 | static const struct pv_cpu_ops xen_cpu_ops __initdata = { | 263 | static const struct pv_cpu_ops xen_cpu_ops __initconst = { |
264 | .fc = xen_fc, | 264 | .fc = xen_fc, |
265 | .thash = xen_thash, | 265 | .thash = xen_thash, |
266 | .get_cpuid = xen_get_cpuid, | 266 | .get_cpuid = xen_get_cpuid, |