From b01a62069f53d338acab0e2bdf9e413adb6add30 Mon Sep 17 00:00:00 2001 From: Don Lewis Date: Sun, 7 Dec 2003 23:21:22 +0000 Subject: [PATCH] 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 --- sys/dev/led/led.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }