Commit 719b530c authored by Jiang Liu's avatar Jiang Liu Committed by Thomas Gleixner

iommu/amd: Use helpers to access irq_cfg data structure associated with IRQ

Use helpers to access irq_cfg data structure associated with IRQ,
instead of accessing irq_data->chip_data directly. Later we can
rewrite those helpers to support hierarchy irqdomain.
Signed-off-by: default avatarJiang Liu <jiang.liu@linux.intel.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: iommu@lists.linux-foundation.org
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Randy Dunlap <rdunlap@infradead.org>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Joerg Roedel <joro@8bytes.org>
Link: http://lkml.kernel.org/r/1414397531-28254-20-git-send-email-jiang.liu@linux.intel.comSigned-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 91411da1
...@@ -4069,7 +4069,7 @@ static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry, ...@@ -4069,7 +4069,7 @@ static int setup_ioapic_entry(int irq, struct IO_APIC_route_entry *entry,
int devid; int devid;
int ret; int ret;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return -EINVAL; return -EINVAL;
...@@ -4132,7 +4132,7 @@ static int set_affinity(struct irq_data *data, const struct cpumask *mask, ...@@ -4132,7 +4132,7 @@ static int set_affinity(struct irq_data *data, const struct cpumask *mask,
if (!config_enabled(CONFIG_SMP)) if (!config_enabled(CONFIG_SMP))
return -1; return -1;
cfg = data->chip_data; cfg = irqd_cfg(data);
irq = data->irq; irq = data->irq;
irte_info = &cfg->irq_2_irte; irte_info = &cfg->irq_2_irte;
...@@ -4170,7 +4170,7 @@ static int free_irq(int irq) ...@@ -4170,7 +4170,7 @@ static int free_irq(int irq)
struct irq_2_irte *irte_info; struct irq_2_irte *irte_info;
struct irq_cfg *cfg; struct irq_cfg *cfg;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return -EINVAL; return -EINVAL;
...@@ -4189,7 +4189,7 @@ static void compose_msi_msg(struct pci_dev *pdev, ...@@ -4189,7 +4189,7 @@ static void compose_msi_msg(struct pci_dev *pdev,
struct irq_cfg *cfg; struct irq_cfg *cfg;
union irte irte; union irte irte;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return; return;
...@@ -4218,7 +4218,7 @@ static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec) ...@@ -4218,7 +4218,7 @@ static int msi_alloc_irq(struct pci_dev *pdev, int irq, int nvec)
if (!pdev) if (!pdev)
return -EINVAL; return -EINVAL;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return -EINVAL; return -EINVAL;
...@@ -4238,7 +4238,7 @@ static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq, ...@@ -4238,7 +4238,7 @@ static int msi_setup_irq(struct pci_dev *pdev, unsigned int irq,
if (!pdev) if (!pdev)
return -EINVAL; return -EINVAL;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return -EINVAL; return -EINVAL;
...@@ -4261,7 +4261,7 @@ static int alloc_hpet_msi(unsigned int irq, unsigned int id) ...@@ -4261,7 +4261,7 @@ static int alloc_hpet_msi(unsigned int irq, unsigned int id)
struct irq_cfg *cfg; struct irq_cfg *cfg;
int index, devid; int index, devid;
cfg = irq_get_chip_data(irq); cfg = irq_cfg(irq);
if (!cfg) if (!cfg)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment