diff options
author | aiju <devnull@localhost> | 2017-06-27 09:21:30 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-06-27 09:21:30 +0000 |
commit | dffbc1e45d61bb928ea6a9d0b1206d641daf24fe (patch) | |
tree | 8a80a3a2c7e964fc89b8776a6dd8326f545a53dc /sys/src/cmd/vmx/pci.c | |
parent | b5a6dc7849cbd9f1fd23183ba46f0d5deb24e81d (diff) |
vmx(1): I/O string instructions, incomplete support for IDE disks, misc fixes
Diffstat (limited to 'sys/src/cmd/vmx/pci.c')
-rw-r--r-- | sys/src/cmd/vmx/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/vmx/pci.c b/sys/src/cmd/vmx/pci.c index 547c2f29e..80dc7aba9 100644 --- a/sys/src/cmd/vmx/pci.c +++ b/sys/src/cmd/vmx/pci.c @@ -280,7 +280,7 @@ pcibusmap(void) int i; iop = 0x1000; - irqs = 1<<5|1<<7|1<<9|1<<10|1<<11|1<<14|1<<15; + irqs = 1<<5|1<<7|1<<9|1<<10|1<<11; uirqs = 0; irq = 0; for(d = pcidevs; d != nil; d = d->next){ |