mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
s390/pci: remove forward declaration
Move a struct definition to get rid of a forward declaration. Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
b18601b076
commit
561ecb0cf6
1 changed files with 5 additions and 8 deletions
|
@ -60,14 +60,6 @@ static DEFINE_SPINLOCK(zpci_domain_lock);
|
||||||
static struct airq_iv *zpci_aisb_iv;
|
static struct airq_iv *zpci_aisb_iv;
|
||||||
static struct airq_iv *zpci_aibv[ZPCI_NR_DEVICES];
|
static struct airq_iv *zpci_aibv[ZPCI_NR_DEVICES];
|
||||||
|
|
||||||
/* Adapter interrupt definitions */
|
|
||||||
static void zpci_irq_handler(struct airq_struct *airq);
|
|
||||||
|
|
||||||
static struct airq_struct zpci_airq = {
|
|
||||||
.handler = zpci_irq_handler,
|
|
||||||
.isc = PCI_ISC,
|
|
||||||
};
|
|
||||||
|
|
||||||
#define ZPCI_IOMAP_ENTRIES \
|
#define ZPCI_IOMAP_ENTRIES \
|
||||||
min(((unsigned long) ZPCI_NR_DEVICES * PCI_BAR_COUNT / 2), \
|
min(((unsigned long) ZPCI_NR_DEVICES * PCI_BAR_COUNT / 2), \
|
||||||
ZPCI_IOMAP_MAX_ENTRIES)
|
ZPCI_IOMAP_MAX_ENTRIES)
|
||||||
|
@ -505,6 +497,11 @@ static void zpci_unmap_resources(struct pci_dev *pdev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct airq_struct zpci_airq = {
|
||||||
|
.handler = zpci_irq_handler,
|
||||||
|
.isc = PCI_ISC,
|
||||||
|
};
|
||||||
|
|
||||||
static int __init zpci_irq_init(void)
|
static int __init zpci_irq_init(void)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
|
Loading…
Add table
Reference in a new issue