aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/led
diff options
context:
space:
mode:
authorDon Lewis <truckman@FreeBSD.org>2003-12-07 23:21:22 +0000
committerDon Lewis <truckman@FreeBSD.org>2003-12-07 23:21:22 +0000
commitb01a62069f53d338acab0e2bdf9e413adb6add30 (patch)
treee24d261cca01150c03c57b497cd41bfece785f7d /sys/dev/led
parent2cf0d8a6efdae469c9ff3cf6e5eded25cfc4459a (diff)
Correct usage of mtx_init() API. This is not a functional change since
the code happened to work because MTX_DEF and NULL are both defined as 0. Reviewed by: phk
Notes
svn path=/head/; revision=123272
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 35a8c6962078..8299eb8b3589 100644
--- a/sys/dev/led/led.c
+++ b/sys/dev/led/led.c
@@ -216,7 +216,7 @@ led_create(led_t *func, void *priv, char const *name)
struct sbuf *sb;
if (next_minor == 0) {
- mtx_init(&led_mtx, "LED mtx", MTX_DEF, 0);
+ mtx_init(&led_mtx, "LED mtx", NULL, MTX_DEF);
timeout(led_timeout, NULL, hz / 10);
}