diff options
-rw-r--r-- | arch/x86/xen/p2m.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index fd12d7ce7ff9..89342e5fd082 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c | |||
@@ -421,7 +421,7 @@ int m2p_add_override(unsigned long mfn, struct page *page) | |||
421 | { | 421 | { |
422 | unsigned long flags; | 422 | unsigned long flags; |
423 | unsigned long pfn; | 423 | unsigned long pfn; |
424 | unsigned long address; | 424 | unsigned long uninitialized_var(address); |
425 | unsigned level; | 425 | unsigned level; |
426 | pte_t *ptep = NULL; | 426 | pte_t *ptep = NULL; |
427 | 427 | ||
@@ -455,7 +455,7 @@ int m2p_remove_override(struct page *page) | |||
455 | unsigned long flags; | 455 | unsigned long flags; |
456 | unsigned long mfn; | 456 | unsigned long mfn; |
457 | unsigned long pfn; | 457 | unsigned long pfn; |
458 | unsigned long address; | 458 | unsigned long uninitialized_var(address); |
459 | unsigned level; | 459 | unsigned level; |
460 | pte_t *ptep = NULL; | 460 | pte_t *ptep = NULL; |
461 | 461 | ||