xen/tmem: mark xen_tmem_init() __init

As a module_init() function, this should have been this way from the
beginning.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
This commit is contained in:
Jan Beulich 2015-01-23 08:37:01 +00:00 committed by David Vrabel
parent 94dd85f6a0
commit 144c61ad35
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ static struct frontswap_ops tmem_frontswap_ops = {
}; };
#endif #endif
static int xen_tmem_init(void) static int __init xen_tmem_init(void)
{ {
if (!xen_domain()) if (!xen_domain())
return 0; return 0;