diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2018-06-08 15:40:25 +0200 |
---|---|---|
committer | Bjorn Helgaas <helgaas@kernel.org> | 2018-06-11 15:11:18 +0200 |
commit | f53e7418c3402a2589216997d7cd07d3b0be497e (patch) | |
tree | b69888c0e464a9d9b0adc7492e29de5aa6e35bab /drivers/pci/pcie/aer/aer_inject.c | |
parent | PCI/AER: Move pcie_aer_get_firmware_first() to portdrv.h (diff) | |
download | linux-f53e7418c3402a2589216997d7cd07d3b0be497e.tar.xz linux-f53e7418c3402a2589216997d7cd07d3b0be497e.zip |
PCI/AER: Move aer_irq() declaration to portdrv.h
The aer_irq() declaration is the only thing needed by aer_inject.c. Move
it to portdrv.h so we eventually get rid of aerdrv.h completely. No
functional change intended.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Keith Busch <keith.busch@intel.com>
Diffstat (limited to 'drivers/pci/pcie/aer/aer_inject.c')
-rw-r--r-- | drivers/pci/pcie/aer/aer_inject.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/pcie/aer/aer_inject.c b/drivers/pci/pcie/aer/aer_inject.c index a49090935303..6c5fda96778a 100644 --- a/drivers/pci/pcie/aer/aer_inject.c +++ b/drivers/pci/pcie/aer/aer_inject.c @@ -21,7 +21,8 @@ #include <linux/uaccess.h> #include <linux/stddef.h> #include <linux/device.h> -#include "aerdrv.h" + +#include "../portdrv.h" /* Override the existing corrected and uncorrected error masks */ static bool aer_mask_override; |