diff options
author | Niklas Schnelle <schnelle@linux.ibm.com> | 2020-09-15 10:42:41 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2020-09-16 14:08:47 +0200 |
commit | 4904e1941ee334bf1f90e4017a37f7c8a52b685c (patch) | |
tree | 66cdf0487b4502d97ea1fe1f6751832e35a36cf2 /arch/s390/pci | |
parent | s390/mm,ptdump: add proper ifdefs (diff) | |
download | linux-4904e1941ee334bf1f90e4017a37f7c8a52b685c.tar.xz linux-4904e1941ee334bf1f90e4017a37f7c8a52b685c.zip |
s390/pci: add missing pci_iov.h include
this fixes a missing prototype compiler warning spotted by the kernel
test robot.
Fixes: abb95b7550f8 ("s390/pci: consolidate SR-IOV specific code")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Niklas Schnelle <schnelle@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/pci')
-rw-r--r-- | arch/s390/pci/pci_iov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/s390/pci/pci_iov.c b/arch/s390/pci/pci_iov.c index 35fca14ebb35..ead062bf2b41 100644 --- a/arch/s390/pci/pci_iov.c +++ b/arch/s390/pci/pci_iov.c @@ -13,6 +13,8 @@ #include <linux/kernel.h> #include <linux/pci.h> +#include "pci_iov.h" + static struct resource iov_res = { .name = "PCI IOV res", .start = 0, |