Fixed bogus spelling nx*' of some no*' devswitch functions.

This commit is contained in:
bde 1998-08-20 05:48:17 +00:00
parent 6c1df374e4
commit 876993d7e3
2 changed files with 4 additions and 4 deletions

View File

@ -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,
};

View File

@ -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,
};