From e4b6edc65b52227bae3d5a3e4043269cef0dba86 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 20 Aug 1998 05:48:17 +0000 Subject: [PATCH] Fixed bogus spelling `nx*' of some `no*' devswitch functions. --- sys/i386/isa/snd/sound.c | 4 ++-- sys/i386/isa/sound/soundcard.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/i386/isa/snd/sound.c b/sys/i386/isa/snd/sound.c index 9d5cb0f1297c..b3ded524d17c 100644 --- a/sys/i386/isa/snd/sound.c +++ b/sys/i386/isa/snd/sound.c @@ -76,8 +76,8 @@ static d_mmap_t sndmmap; #define CDEV_MAJOR 30 static struct cdevsw snd_cdevsw = { sndopen, sndclose, sndread, sndwrite, - sndioctl, nxstop, nxreset, nxdevtotty, - sndselect, sndmmap, nxstrategy, "snd", + sndioctl, nostop, noreset, nodevtotty, + sndselect, sndmmap, nostrategy, "snd", NULL, -1, }; diff --git a/sys/i386/isa/sound/soundcard.c b/sys/i386/isa/sound/soundcard.c index b4eca553ebc1..52428b404e33 100644 --- a/sys/i386/isa/sound/soundcard.c +++ b/sys/i386/isa/sound/soundcard.c @@ -91,8 +91,8 @@ static char driver_name[] = "snd"; #define CDEV_MAJOR 30 static struct cdevsw snd_cdevsw = { sndopen, sndclose, sndread, sndwrite, - sndioctl, nxstop, nxreset, nxdevtotty, - sndpoll, sndmmap, nxstrategy, driver_name, + sndioctl, nostop, noreset, nodevtotty, + sndpoll, sndmmap, nostrategy, driver_name, NULL, -1, };