diff options
author | Alasdair G Kergon <agk@redhat.com> | 2005-05-05 16:16:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-05 16:36:46 -0700 |
commit | 5e198d94dd0c3ec7f6138229e2e412c2c6268c38 (patch) | |
tree | 303c284a5a90e813ca1c92a0c3698a63089a86b2 /drivers/md/dm-table.c | |
parent | f1daa40b638891a62e1be40f78d752c500265362 (diff) | |
download | linux-3.10-5e198d94dd0c3ec7f6138229e2e412c2c6268c38.tar.gz linux-3.10-5e198d94dd0c3ec7f6138229e2e412c2c6268c38.tar.bz2 linux-3.10-5e198d94dd0c3ec7f6138229e2e412c2c6268c38.zip |
[PATCH] device-mapper: Some missing statics
This patch makes some needlessly global code static.
Signed-Off-By: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/md/dm-table.c')
-rw-r--r-- | drivers/md/dm-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index ee175d4906c..18e9b9953fc 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c @@ -242,7 +242,7 @@ static void free_devices(struct list_head *devices) } } -void table_destroy(struct dm_table *t) +static void table_destroy(struct dm_table *t) { unsigned int i; |