diff options
| author | dyoung <dyoung@NetBSD.org> | 2009-04-07 17:54:58 +0000 |
|---|---|---|
| committer | dyoung <dyoung@NetBSD.org> | 2009-04-07 17:54:58 +0000 |
| commit | 6a72962b6cbf643080f5467b0f6a6f48adc5dfd2 (patch) | |
| tree | 9506050052968189951132367c877fd491d8be43 /sys/dev | |
| parent | f346073f7dd98d77b7af169a2c6fcadf99c77db0 (diff) | |
Cosmetic: in a debug statement, use "%s", __func__ instead of a
misspelling of the detach routine's name.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/midi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/midi.c b/sys/dev/midi.c index 96a377aee85..43b97825271 100644 --- a/sys/dev/midi.c +++ b/sys/dev/midi.c @@ -1,4 +1,4 @@ -/* $NetBSD: midi.c,v 1.68 2008/06/12 22:29:41 cegger Exp $ */ +/* $NetBSD: midi.c,v 1.69 2009/04/07 17:54:58 dyoung Exp $ */ /* * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.68 2008/06/12 22:29:41 cegger Exp $"); +__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.69 2009/04/07 17:54:58 dyoung Exp $"); #include "midi.h" #include "sequencer.h" @@ -191,7 +191,7 @@ mididetach(device_t self, int flags) struct midi_softc *sc = device_private(self); int maj, mn; - DPRINTFN(2,("midi_detach: sc=%p flags=%d\n", sc, flags)); + DPRINTFN(2,("%s: sc=%p flags=%d\n", __func__, sc, flags)); pmf_device_deregister(self); |
