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
This commit is contained in:
Don Lewis 2003-12-07 23:21:22 +00:00
parent 2cf0d8a6ef
commit b01a62069f

View File

@ -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);
}