Skip to content

Commit

Permalink
dm: mark function lists static
Browse files Browse the repository at this point in the history
Add a couple of statics.

Signed-off-by: Alasdair G Kergon <[email protected]>
  • Loading branch information
kergon committed Feb 8, 2008
1 parent 7e5c1e8 commit b9249e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/md/dm.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,15 @@ static void local_exit(void)
DMINFO("cleaned up");
}

int (*_inits[])(void) __initdata = {
static int (*_inits[])(void) __initdata = {
local_init,
dm_target_init,
dm_linear_init,
dm_stripe_init,
dm_interface_init,
};

void (*_exits[])(void) = {
static void (*_exits[])(void) = {
local_exit,
dm_target_exit,
dm_linear_exit,
Expand Down

0 comments on commit b9249e5

Please sign in to comment.