From 4daa98c6188831c7bb031c54dfa9efc4cf8b96d3 Mon Sep 17 00:00:00 2001 From: martin Date: Sat, 5 Nov 2005 13:59:02 +0000 Subject: [PATCH] Rename the wait channels (one was a copy&pasto, the other much too long) --- sys/dev/sbus/stp4020.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/dev/sbus/stp4020.c b/sys/dev/sbus/stp4020.c index d8513eb03b7c..753faae5409c 100644 --- a/sys/dev/sbus/stp4020.c +++ b/sys/dev/sbus/stp4020.c @@ -1,4 +1,4 @@ -/* $NetBSD: stp4020.c,v 1.44 2005/06/01 21:17:28 jdc Exp $ */ +/* $NetBSD: stp4020.c,v 1.45 2005/11/05 13:59:02 martin Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.44 2005/06/01 21:17:28 jdc Exp $"); +__KERNEL_RCSID(0, "$NetBSD: stp4020.c,v 1.45 2005/11/05 13:59:02 martin Exp $"); #include #include @@ -589,7 +589,7 @@ stp4020_event_thread(arg) s = splhigh(); if ((e = SIMPLEQ_FIRST(&sc->events)) == NULL) { splx(s); - (void)tsleep(&sc->events, PWAIT, "pcicev", 0); + (void)tsleep(&sc->events, PWAIT, "nellevt", 0); continue; } SIMPLEQ_REMOVE_HEAD(&sc->events, se_q); @@ -1127,7 +1127,7 @@ stp4020_delay(ms) if (ticks > 60*hz) panic("stp4020: preposterous delay: %u", ticks); #endif - tsleep(&ticks, 0, "stp4020_delay", ticks); + tsleep(&ticks, 0, "nelldel", ticks); } #ifdef STP4020_DEBUG