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-path-selector.c | |
parent | f1daa40b638891a62e1be40f78d752c500265362 (diff) | |
download | linux-stable-5e198d94dd0c3ec7f6138229e2e412c2c6268c38.tar.gz linux-stable-5e198d94dd0c3ec7f6138229e2e412c2c6268c38.tar.bz2 linux-stable-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-path-selector.c')
-rw-r--r-- | drivers/md/dm-path-selector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-path-selector.c b/drivers/md/dm-path-selector.c index ac5c4bbec6c1..a28c1c2b4ef5 100644 --- a/drivers/md/dm-path-selector.c +++ b/drivers/md/dm-path-selector.c @@ -26,7 +26,7 @@ struct ps_internal { static LIST_HEAD(_path_selectors); static DECLARE_RWSEM(_ps_lock); -struct ps_internal *__find_path_selector_type(const char *name) +static struct ps_internal *__find_path_selector_type(const char *name) { struct ps_internal *psi; |