diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-16 05:57:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-16 05:57:45 +0000 |
commit | c02d6e1f0fe9f6ecfb99b3d29e08177b87aadf63 (patch) | |
tree | dc604a784e3e1b578c16c9a26e39afa7a8b67441 /sys/dev/pci | |
parent | 501a72415a099472ff6601d54b9272a7d9da70b5 (diff) |
Fix tsleep wait channel name; ok damien@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_wpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_wpi.c b/sys/dev/pci/if_wpi.c index ba77f77a1be..aa271402989 100644 --- a/sys/dev/pci/if_wpi.c +++ b/sys/dev/pci/if_wpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wpi.c,v 1.1 2006/05/14 19:00:48 damien Exp $ */ +/* $OpenBSD: if_wpi.c,v 1.2 2006/05/16 05:57:44 miod Exp $ */ /*- * Copyright (c) 2006 @@ -1733,7 +1733,7 @@ wpi_cmd(struct wpi_softc *sc, int code, const void *buf, int size, int async) ring->cur = (ring->cur + 1) % WPI_CMD_RING_COUNT; WPI_WRITE(sc, WPI_TX_WIDX, ring->qid << 8 | ring->cur); - return async ? 0 : tsleep(cmd, PCATCH, "iwicmd", hz); + return async ? 0 : tsleep(cmd, PCATCH, "wpicmd", hz); } /* |