summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/pci_intr_lib.c
diff options
context:
space:
mode:
authorgd78059 <none@none>2008-06-03 13:53:28 -0700
committergd78059 <none@none>2008-06-03 13:53:28 -0700
commit18061c656cfeed11077d5725b11f34c879cd7f6c (patch)
tree4df7ec4087f3ae86b2b283d94c8c8e8e936f48cf /usr/src/uts/common/io/pci_intr_lib.c
parent3fd94f8c011031b38162a1db3b554de4371c167f (diff)
downloadillumos-joyent-18061c656cfeed11077d5725b11f34c879cd7f6c.tar.gz
PSARC 2008/343 PCI Multimedia Class Interrupt Priorities
6708747 Decrease default IPL for PCI class 0x4 (Multimedia)
Diffstat (limited to 'usr/src/uts/common/io/pci_intr_lib.c')
-rw-r--r--usr/src/uts/common/io/pci_intr_lib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/src/uts/common/io/pci_intr_lib.c b/usr/src/uts/common/io/pci_intr_lib.c
index 0ef36d8a21..cd5fefe47d 100644
--- a/usr/src/uts/common/io/pci_intr_lib.c
+++ b/usr/src/uts/common/io/pci_intr_lib.c
@@ -19,7 +19,7 @@
* CDDL HEADER END
*/
/*
- * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
@@ -1132,13 +1132,13 @@ pci_devclass_to_ipl(int class)
case PCI_CLASS_SERIALBUS:
ipl = (sub_class == PCI_SERIAL_IB) ? 6 : 1;
break;
+ case PCI_CLASS_MM:
+ ipl = 0x8;
+ break;
/*
* for high priority interrupt handlers, use level 12
* as the highest for device drivers
*/
- case PCI_CLASS_MM:
- ipl = 0xc;
- break;
case PCI_CLASS_MEM:
ipl = 0xc;
break;