diff options
author | bde <bde@FreeBSD.org> | 1995-12-10 20:34:53 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-10 20:34:53 +0000 |
commit | 1fa32892379e9878a6ad76beb240e1dc8ddcbe50 (patch) | |
tree | a341d4ea5968f5835d133ba112002cb9de8e93e1 /sys/dev | |
parent | b3651e490f08eda8504315a538bd1c5ae756cd3e (diff) | |
download | FreeBSD-src-1fa32892379e9878a6ad76beb240e1dc8ddcbe50.zip FreeBSD-src-1fa32892379e9878a6ad76beb240e1dc8ddcbe50.tar.gz |
Replaced nxmmap by nommap (if the mmap function gets called, then the
device must be configured).
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/cy/cy.c | 4 | ||||
-rw-r--r-- | sys/dev/cy/cy_isa.c | 4 | ||||
-rw-r--r-- | sys/dev/si/si.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c index fe37485..6c54a22 100644 --- a/sys/dev/cy/cy.c +++ b/sys/dev/cy/cy.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.25 1995/12/08 23:20:24 phk Exp $ + * $Id: cy.c,v 1.26 1995/12/10 15:54:42 bde Exp $ */ #include "cy.h" @@ -374,7 +374,7 @@ static d_devtotty_t cydevtotty; static struct cdevsw cy_cdevsw = { cyopen, cyclose, cyread, cywrite, /*48*/ cyioctl, cystop, nxreset, cydevtotty,/*cyclades*/ - ttselect, nxmmap, NULL, "cy", NULL, -1 }; + ttselect, nommap, NULL, "cy", NULL, -1 }; struct isa_driver siodriver = { diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index fe37485..6c54a22 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.25 1995/12/08 23:20:24 phk Exp $ + * $Id: cy.c,v 1.26 1995/12/10 15:54:42 bde Exp $ */ #include "cy.h" @@ -374,7 +374,7 @@ static d_devtotty_t cydevtotty; static struct cdevsw cy_cdevsw = { cyopen, cyclose, cyread, cywrite, /*48*/ cyioctl, cystop, nxreset, cydevtotty,/*cyclades*/ - ttselect, nxmmap, NULL, "cy", NULL, -1 }; + ttselect, nommap, NULL, "cy", NULL, -1 }; struct isa_driver siodriver = { diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c index 5cc1e18..53ca99d 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 */ |