diff options
author | Bruce Evans <bde@FreeBSD.org> | 1995-12-10 20:34:53 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1995-12-10 20:34:53 +0000 |
commit | 26ec204be05913dc29e875197a1b1a9c25846410 (patch) | |
tree | a341d4ea5968f5835d133ba112002cb9de8e93e1 /sys/dev/si | |
parent | f54d2260b4c8c7ad803649b7467d06c2db7b0d3b (diff) | |
download | src-26ec204be05913dc29e875197a1b1a9c25846410.tar.gz src-26ec204be05913dc29e875197a1b1a9c25846410.zip |
Replaced nxmmap by nommap (if the mmap function gets called, then the
device must be configured).
Notes
Notes:
svn path=/head/; revision=12742
Diffstat (limited to 'sys/dev/si')
-rw-r--r-- | sys/dev/si/si.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 5cc1e18d9c6d..53ca99de5384 100644 --- a/sys/dev/si/si.c +++ b/sys/dev/si/si.c @@ -30,7 +30,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN * NO EVENT SHALL THE AUTHORS BE LIABLE. * - * $Id: si.c,v 1.25 1995/12/10 13:39:12 phk Exp $ + * $Id: si.c,v 1.26 1995/12/10 15:54:47 bde Exp $ */ #ifndef lint @@ -125,7 +125,7 @@ static d_devtotty_t sidevtotty; static struct cdevsw si_cdevsw = { siopen, siclose, siread, siwrite, /*68*/ siioctl, sistop, nxreset, sidevtotty,/* si */ - ttselect, nxmmap, NULL, "si", NULL, -1 }; + ttselect, nommap, NULL, "si", NULL, -1 }; #ifdef SI_DEBUG /* use: ``options "SI_DEBUG"'' in your config file */ |