diff options
author | Juergen Gross <jgross@suse.com> | 2015-01-28 06:44:23 (GMT) |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-01-28 10:00:36 (GMT) |
commit | a3f5239650a9c08df0473261aedd6f50f7775410 (patch) | |
tree | 4090089b988e0a48021ee3e014eeaa03dd6cd03f | |
parent | 3ba5c867ca504a9fbdadbbd1b36b690c7e2718df (diff) | |
download | linux-a3f5239650a9c08df0473261aedd6f50f7775410.tar.xz |
x86/xen: add some __init and static annotations in arch/x86/xen/setup.c
Some more functions in arch/x86/xen/setup.c can be made "__init".
xen_ignore_unusable() can be made "static".
Signed-off-by: Juergen Gross <jgross@suse.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
-rw-r--r-- | arch/x86/xen/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c index 4dcc608..55f388e 100644 --- a/arch/x86/xen/setup.c +++ b/arch/x86/xen/setup.c @@ -535,8 +535,8 @@ static unsigned long __init xen_get_max_pages(void) return min(max_pages, MAX_DOMAIN_PAGES); } -static void xen_align_and_add_e820_region(phys_addr_t start, phys_addr_t size, - int type) +static void __init xen_align_and_add_e820_region(phys_addr_t start, + phys_addr_t size, int type) { phys_addr_t end = start + size; @@ -549,7 +549,7 @@ static void xen_align_and_add_e820_region(phys_addr_t start, phys_addr_t size, e820_add_region(start, end - start, type); } -void xen_ignore_unusable(struct e820entry *list, size_t map_size) +static void __init xen_ignore_unusable(struct e820entry *list, size_t map_size) { struct e820entry *entry; unsigned int i; |