aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ipmi/ipmi.c
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2011-11-07 06:44:47 +0000
committerEd Schouten <ed@FreeBSD.org>2011-11-07 06:44:47 +0000
commitd745c852becf3792a2185003947324721209195a (patch)
tree3278fb8afc568f22cc5eda0e74926191fc1857df /sys/dev/ipmi/ipmi.c
parentfd1ca22afbc91a5524d01df9d38afecf3178a149 (diff)
downloadsrc-d745c852becf3792a2185003947324721209195a.tar.gz
src-d745c852becf3792a2185003947324721209195a.zip
Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.
This means that their use is restricted to a single C file.
Notes
Notes: svn path=/head/; revision=227293
Diffstat (limited to 'sys/dev/ipmi/ipmi.c')
-rw-r--r--sys/dev/ipmi/ipmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ipmi/ipmi.c b/sys/dev/ipmi/ipmi.c
index 74a7d03646a5..8def02b30965 100644
--- a/sys/dev/ipmi/ipmi.c
+++ b/sys/dev/ipmi/ipmi.c
@@ -75,7 +75,7 @@ static struct cdevsw ipmi_cdevsw = {
.d_name = "ipmi",
};
-MALLOC_DEFINE(M_IPMI, "ipmi", "ipmi");
+static MALLOC_DEFINE(M_IPMI, "ipmi", "ipmi");
static int
ipmi_open(struct cdev *cdev, int flags, int fmt, struct thread *td)