]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Merge branch 'intx' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6
authorLinus Torvalds <torvalds@woody.osdl.org>
Thu, 7 Dec 2006 23:04:20 +0000 (15:04 -0800)
committerLinus Torvalds <torvalds@woody.osdl.org>
Thu, 7 Dec 2006 23:04:20 +0000 (15:04 -0800)
* 'intx' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6:
  PCI MSI: always toggle legacy-INTx-enable bit upon MSI entry/exit

1  2 
drivers/pci/msi.c

diff --combined drivers/pci/msi.c
index 9168401401bcc089f86d1f57e8fea2260b68de53,c2828a37c2f79fbc07f51107a285330514e6be39..ed3f7e1a563c79c06d9808bfc59c795665fc11c5
@@@ -26,7 -26,7 +26,7 @@@
  
  static DEFINE_SPINLOCK(msi_lock);
  static struct msi_desc* msi_desc[NR_IRQS] = { [0 ... NR_IRQS-1] = NULL };
 -static kmem_cache_t* msi_cachep;
 +static struct kmem_cache* msi_cachep;
  
  static int pci_msi_enable = 1;
  
@@@ -255,10 -255,8 +255,8 @@@ static void enable_msi_mode(struct pci_
                pci_write_config_word(dev, msi_control_reg(pos), control);
                dev->msix_enabled = 1;
        }
-       if (pci_find_capability(dev, PCI_CAP_ID_EXP)) {
-               /* PCI Express Endpoint device detected */
-               pci_intx(dev, 0);  /* disable intx */
-       }
+       pci_intx(dev, 0);  /* disable intx */
  }
  
  void disable_msi_mode(struct pci_dev *dev, int pos, int type)
                pci_write_config_word(dev, msi_control_reg(pos), control);
                dev->msix_enabled = 0;
        }
-       if (pci_find_capability(dev, PCI_CAP_ID_EXP)) {
-               /* PCI Express Endpoint device detected */
-               pci_intx(dev, 1);  /* enable intx */
-       }
+       pci_intx(dev, 1);  /* enable intx */
  }
  
  static int msi_lookup_irq(struct pci_dev *dev, int type)