aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/led
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2005-02-10 12:02:37 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2005-02-10 12:02:37 +0000
commitc711aea6cae4409bc957bf327fd5b23ada7fdf21 (patch)
treee482f2a3b11d8b31aaf943a15d6e90aa0b298dd1 /sys/dev/led
parentd67c43b3a9bd14530efcd2b51905aeaf4a25ad87 (diff)
downloadsrc-c711aea6cae4409bc957bf327fd5b23ada7fdf21.tar.gz
src-c711aea6cae4409bc957bf327fd5b23ada7fdf21.zip
Make a bunch of malloc types static.
Found by: src/tools/tools/kernxref
Notes
Notes: svn path=/head/; revision=141616
Diffstat (limited to 'sys/dev/led')
-rw-r--r--sys/dev/led/led.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/led/led.c b/sys/dev/led/led.c
index 03d7e6cb6886..49e787b98b53 100644
--- a/sys/dev/led/led.c
+++ b/sys/dev/led/led.c
@@ -42,7 +42,7 @@ static struct sx led_sx;
static LIST_HEAD(, ledsc) led_list = LIST_HEAD_INITIALIZER(&led_list);
static struct callout led_ch;
-MALLOC_DEFINE(M_LED, "LED", "LED driver");
+static MALLOC_DEFINE(M_LED, "LED", "LED driver");
static void
led_timeout(void *p)