aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-08-17 20:25:50 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-08-17 20:25:50 +0000
commitb8e49f681ba1043f50d42c84eb3eeb78a6d8e96e (patch)
tree61f7ef0573a9acc1162ecfd28b082fef8509f558 /sys/dev
parent14bbfc5ddca8899b9bf45905bffb4c45c75f0110 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/speaker/spkr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/speaker/spkr.c b/sys/dev/speaker/spkr.c
index f594b8bb89075..f6302a328e47d 100644
--- a/sys/dev/speaker/spkr.c
+++ b/sys/dev/speaker/spkr.c
@@ -4,7 +4,7 @@
* v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993
* modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su>
*
- * $Id: spkr.c,v 1.36 1999/05/30 16:52:27 phk Exp $
+ * $Id: spkr.c,v 1.37 1999/05/31 11:26:32 phk Exp $
*/
#include "speaker.h"
@@ -480,7 +480,7 @@ spkropen(dev, flags, fmt, p)
struct proc *p;
{
#ifdef DEBUG
- (void) printf("spkropen: entering with dev = %x\n", dev);
+ (void) printf("spkropen: entering with dev = %s\n", devtoname(dev));
#endif /* DEBUG */
if (minor(dev) != 0)
@@ -506,8 +506,8 @@ spkrwrite(dev, uio, ioflag)
int ioflag;
{
#ifdef DEBUG
- printf("spkrwrite: entering with dev = %x, count = %d\n",
- dev, uio->uio_resid);
+ printf("spkrwrite: entering with dev = %s, count = %d\n",
+ devtoname(dev), uio->uio_resid);
#endif /* DEBUG */
if (minor(dev) != 0)
@@ -539,7 +539,7 @@ spkrclose(dev, flags, fmt, p)
struct proc *p;
{
#ifdef DEBUG
- (void) printf("spkrclose: entering with dev = %x\n", dev);
+ (void) printf("spkrclose: entering with dev = %s\n", devtoname(dev));
#endif /* DEBUG */
if (minor(dev) != 0)