aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinas Vepstas <linas@austin.ibm.com>2007-11-07 16:43:59 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2008-02-01 18:04:22 -0500
commit94688cf2454986309fbcd495233ba2423786a14a (patch)
treeac170991ef1db1127d59a0d7231a8cbb53b5474c
parent1b7c9fcaa147662628078c83ecaf1ef2c5c9c9d0 (diff)
PCI: export pci_restore_msi_state()
PCI error recovery usually involves the PCI adapter being reset. If the device is using MSI, the reset will cause the MSI state to be lost; the device driver needs to restore the MSI state. The pci_restore_msi_state() routine is currently protected by CONFIG_PM; remove this, and also export the symbol, so that it can be used in a modle. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/pci/msi.c3
-rw-r--r--drivers/pci/pci.h6
-rw-r--r--include/linux/pci.h2
3 files changed, 3 insertions, 8 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c
index 07c9f09c856d..30de51fcd68c 100644
--- a/drivers/pci/msi.c
+++ b/drivers/pci/msi.c
@@ -230,7 +230,6 @@ static void pci_intx_for_msi(struct pci_dev *dev, int enable)
230 pci_intx(dev, enable); 230 pci_intx(dev, enable);
231} 231}
232 232
233#ifdef CONFIG_PM
234static void __pci_restore_msi_state(struct pci_dev *dev) 233static void __pci_restore_msi_state(struct pci_dev *dev)
235{ 234{
236 int pos; 235 int pos;
@@ -288,7 +287,7 @@ void pci_restore_msi_state(struct pci_dev *dev)
288 __pci_restore_msi_state(dev); 287 __pci_restore_msi_state(dev);
289 __pci_restore_msix_state(dev); 288 __pci_restore_msix_state(dev);
290} 289}
291#endif /* CONFIG_PM */ 290EXPORT_SYMBOL_GPL(pci_restore_msi_state);
292 291
293/** 292/**
294 * msi_capability_init - configure device's MSI capability structure 293 * msi_capability_init - configure device's MSI capability structure
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index fc87e14b50de..4c4613387786 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -45,12 +45,6 @@ static inline void pci_no_msi(void) { }
45static inline void pci_msi_init_pci_dev(struct pci_dev *dev) { } 45static inline void pci_msi_init_pci_dev(struct pci_dev *dev) { }
46#endif 46#endif
47 47
48#if defined(CONFIG_PCI_MSI) && defined(CONFIG_PM)
49void pci_restore_msi_state(struct pci_dev *dev);
50#else
51static inline void pci_restore_msi_state(struct pci_dev *dev) {}
52#endif
53
54#ifdef CONFIG_PCIEAER 48#ifdef CONFIG_PCIEAER
55void pci_no_aer(void); 49void pci_no_aer(void);
56#else 50#else
diff --git a/include/linux/pci.h b/include/linux/pci.h
index c53d6cf723d1..87aab07e239a 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -668,6 +668,7 @@ static inline int pci_enable_msix(struct pci_dev* dev,
668 struct msix_entry *entries, int nvec) {return -1;} 668 struct msix_entry *entries, int nvec) {return -1;}
669static inline void pci_disable_msix(struct pci_dev *dev) {} 669static inline void pci_disable_msix(struct pci_dev *dev) {}
670static inline void msi_remove_pci_irq_vectors(struct pci_dev *dev) {} 670static inline void msi_remove_pci_irq_vectors(struct pci_dev *dev) {}
671static inline void pci_restore_msi_state(struct pci_dev *dev) {}
671#else 672#else
672extern int pci_enable_msi(struct pci_dev *dev); 673extern int pci_enable_msi(struct pci_dev *dev);
673extern void pci_disable_msi(struct pci_dev *dev); 674extern void pci_disable_msi(struct pci_dev *dev);
@@ -675,6 +676,7 @@ extern int pci_enable_msix(struct pci_dev* dev,
675 struct msix_entry *entries, int nvec); 676 struct msix_entry *entries, int nvec);
676extern void pci_disable_msix(struct pci_dev *dev); 677extern void pci_disable_msix(struct pci_dev *dev);
677extern void msi_remove_pci_irq_vectors(struct pci_dev *dev); 678extern void msi_remove_pci_irq_vectors(struct pci_dev *dev);
679extern void pci_restore_msi_state(struct pci_dev *dev);
678#endif 680#endif
679 681
680#ifdef CONFIG_HT_IRQ 682#ifdef CONFIG_HT_IRQ