dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] MD: conditionalize some code

The autorun code is only used if this module is built into the static
kernel image.  Adjust #ifdefs accordingly.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
Acked-by: NeilBrown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jeff Garzik 2006-12-10 02:20:50 -08:00 committed by Linus Torvalds
parent b875e531fc
commit fdee8ae449
1 changed files with 3 additions and 1 deletions

View File

@ -3371,6 +3371,7 @@ out:
return err;
}
#ifndef MODULE
static void autorun_array(mddev_t *mddev)
{
mdk_rdev_t *rdev;
@ -3485,6 +3486,7 @@ static void autorun_devices(int part)
}
printk(KERN_INFO "md: ... autorun DONE.\n");
}
#endif /* !MODULE */
static int get_version(void __user * arg)
{
@ -5593,7 +5595,7 @@ static void autostart_arrays(int part)
autorun_devices(part);
}
#endif
#endif /* !MODULE */
static __exit void md_exit(void)
{