mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
PCI AER: fix warnings when PCIEAER=n
Fix warnings when CONFIG_PCIEAER=n: drivers/pci/pcie/portdrv_pci.c:105: warning: statement with no effect drivers/pci/pcie/portdrv_pci.c:226: warning: statement with no effect drivers/scsi/arcmsr/arcmsr_hba.c:352: warning: statement with no effect Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Linas Vepstas <linas@austin.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
0d4cbb5e7f
commit
5547bbeed3
1 changed files with 20 additions and 5 deletions
|
@ -15,11 +15,26 @@ extern int pci_disable_pcie_error_reporting(struct pci_dev *dev);
|
||||||
extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
|
extern int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev);
|
||||||
extern int pci_cleanup_aer_correct_error_status(struct pci_dev *dev);
|
extern int pci_cleanup_aer_correct_error_status(struct pci_dev *dev);
|
||||||
#else
|
#else
|
||||||
#define pci_enable_pcie_error_reporting(dev) (-EINVAL)
|
static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev)
|
||||||
#define pci_find_aer_capability(dev) (0)
|
{
|
||||||
#define pci_disable_pcie_error_reporting(dev) (-EINVAL)
|
return -EINVAL;
|
||||||
#define pci_cleanup_aer_uncorrect_error_status(dev) (-EINVAL)
|
}
|
||||||
#define pci_cleanup_aer_correct_error_status(dev) (-EINVAL)
|
static inline int pci_find_aer_capability(struct pci_dev *dev)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
static inline int pci_disable_pcie_error_reporting(struct pci_dev *dev)
|
||||||
|
{
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
static inline int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
|
||||||
|
{
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
static inline int pci_cleanup_aer_correct_error_status(struct pci_dev *dev)
|
||||||
|
{
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif //_AER_H_
|
#endif //_AER_H_
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue