diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-29 04:01:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:15 -0400 |
commit | 74006309c7f09c893c18cbb6f0e19137edd04239 (patch) | |
tree | a52475b15c69574b881365173b79b3be9c90ec88 /drivers | |
parent | 66ec2d778657b1a58ad26d0bc3b39b92bca69b53 (diff) |
ipmi: make alloc_recv_msg static
Make the needlessly global ipmi_alloc_recv_msg() static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/ipmi/ipmi_msghandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index 8c4baddd3731..8a59aaa21be5 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c | |||
@@ -3932,7 +3932,7 @@ static void free_recv_msg(struct ipmi_recv_msg *msg) | |||
3932 | kfree(msg); | 3932 | kfree(msg); |
3933 | } | 3933 | } |
3934 | 3934 | ||
3935 | struct ipmi_recv_msg *ipmi_alloc_recv_msg(void) | 3935 | static struct ipmi_recv_msg *ipmi_alloc_recv_msg(void) |
3936 | { | 3936 | { |
3937 | struct ipmi_recv_msg *rv; | 3937 | struct ipmi_recv_msg *rv; |
3938 | 3938 | ||