diff options
author | Doug Rabson <dfr@FreeBSD.org> | 2000-08-28 21:48:13 +0000 |
---|---|---|
committer | Doug Rabson <dfr@FreeBSD.org> | 2000-08-28 21:48:13 +0000 |
commit | 21c3015a2483a7dd798e1baab65786a5abe7ed0a (patch) | |
tree | a117c5438eb796bf8d29ccd3951677aa5ef43dca /sys/dev/kbd | |
parent | 5809aaba6742a9ef299b8b86706145105cdcf3e5 (diff) | |
download | src-21c3015a2483a7dd798e1baab65786a5abe7ed0a.tar.gz src-21c3015a2483a7dd798e1baab65786a5abe7ed0a.zip |
* Completely rewrite the alpha busspace to hide the implementation from
the drivers.
* Remove legacy inx/outx support from chipset and replace with macros
which call busspace.
* Rework pci config accesses to route through the pcib device instead of
calling a MD function directly.
With these changes it is possible to cleanly support machines which have
more than one independantly numbered PCI busses. As a bonus, the new
busspace implementation should be measurably faster than the old one.
Notes
Notes:
svn path=/head/; revision=65176
Diffstat (limited to 'sys/dev/kbd')
-rw-r--r-- | sys/dev/kbd/atkbdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/kbd/atkbdc.c b/sys/dev/kbd/atkbdc.c index 176ca666bc66..ee643d017b82 100644 --- a/sys/dev/kbd/atkbdc.c +++ b/sys/dev/kbd/atkbdc.c @@ -160,7 +160,7 @@ atkbdc_configure(void) #if defined(__i386__) tag = I386_BUS_SPACE_IO; #elif defined(__alpha__) - tag = ALPHA_BUS_SPACE_IO; + tag = busspace_isa_io; #endif #if notyet |