Commit a2c7f622 authored by Andries E. Brouwer's avatar Andries E. Brouwer Committed by Linus Torvalds

[PATCH] dm_init unresolved reference to _exits

drivers/md/dm.c dm_int refers to _exits which is defined as __exitdata. 
With CONFIG_HOTPLUG=n, __exitdata is discarded.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c39c1c81
......@@ -146,7 +146,7 @@ int (*_inits[])(void) __initdata = {
dm_interface_init,
};
void (*_exits[])(void) __exitdata = {
void (*_exits[])(void) = {
local_exit,
dm_target_exit,
dm_linear_exit,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment