diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-12-16 15:08:51 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-12-16 15:08:51 +0000 |
commit | 7dee09e8d4855a2485b607217d7616cb968ccbd9 (patch) | |
tree | 6dcb8d5646e950474acb72b318bcee3643ed8d7a /sys/arch/sparc64/dev/pckbc_ebus.c | |
parent | 3d3d87b11f00478a7a0a08b902139fdd2cd0d106 (diff) |
Don't need linear mappings here either
Diffstat (limited to 'sys/arch/sparc64/dev/pckbc_ebus.c')
-rw-r--r-- | sys/arch/sparc64/dev/pckbc_ebus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/pckbc_ebus.c b/sys/arch/sparc64/dev/pckbc_ebus.c index ccfcffdc1e5..e9d3dd7c679 100644 --- a/sys/arch/sparc64/dev/pckbc_ebus.c +++ b/sys/arch/sparc64/dev/pckbc_ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pckbc_ebus.c,v 1.5 2003/06/24 21:54:39 henric Exp $ */ +/* $OpenBSD: pckbc_ebus.c,v 1.6 2003/12/16 15:08:50 jason Exp $ */ /* * Copyright (c) 2002 Jason L. Wright (jason@thought.net) @@ -120,7 +120,7 @@ pckbc_ebus_attach(parent, self, aux) &sc->sc_ioh); else if (ebus_bus_map(sc->sc_iot, 0, EBUS_PADDR_FROM_REG(&ea->ea_regs[0]), ea->ea_regs[0].size, - BUS_SPACE_MAP_LINEAR, 0, &sc->sc_ioh) != 0) { + 0, 0, &sc->sc_ioh) != 0) { printf(": can't map register space\n"); return; } |