mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
hisi_sas: use platform_get_irq()
It is preferred that drivers use platform_get_irq() instead of irq_of_parse_and_map(), so replace. Signed-off-by: John Garry <john.garry@huawei.com> Acked-by: Rob Herring <robh@kernel.org> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
9c9d18e7a6
commit
df2d8213d9
2 changed files with 5 additions and 9 deletions
|
@ -16,7 +16,6 @@
|
|||
#include <linux/mfd/syscon.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/of_irq.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <scsi/libsas.h>
|
||||
|
|
|
@ -1673,19 +1673,16 @@ static irq_handler_t fatal_interrupts[HISI_SAS_MAX_QUEUES] = {
|
|||
|
||||
static int interrupt_init_v1_hw(struct hisi_hba *hisi_hba)
|
||||
{
|
||||
struct device *dev = &hisi_hba->pdev->dev;
|
||||
struct device_node *np = dev->of_node;
|
||||
struct platform_device *pdev = hisi_hba->pdev;
|
||||
struct device *dev = &pdev->dev;
|
||||
int i, j, irq, rc, idx;
|
||||
|
||||
if (!np)
|
||||
return -ENOENT;
|
||||
|
||||
for (i = 0; i < hisi_hba->n_phy; i++) {
|
||||
struct hisi_sas_phy *phy = &hisi_hba->phy[i];
|
||||
|
||||
idx = i * HISI_SAS_PHY_INT_NR;
|
||||
for (j = 0; j < HISI_SAS_PHY_INT_NR; j++, idx++) {
|
||||
irq = irq_of_parse_and_map(np, idx);
|
||||
irq = platform_get_irq(pdev, idx);
|
||||
if (!irq) {
|
||||
dev_err(dev,
|
||||
"irq init: fail map phy interrupt %d\n",
|
||||
|
@ -1706,7 +1703,7 @@ static int interrupt_init_v1_hw(struct hisi_hba *hisi_hba)
|
|||
|
||||
idx = hisi_hba->n_phy * HISI_SAS_PHY_INT_NR;
|
||||
for (i = 0; i < hisi_hba->queue_count; i++, idx++) {
|
||||
irq = irq_of_parse_and_map(np, idx);
|
||||
irq = platform_get_irq(pdev, idx);
|
||||
if (!irq) {
|
||||
dev_err(dev, "irq init: could not map cq interrupt %d\n",
|
||||
idx);
|
||||
|
@ -1724,7 +1721,7 @@ static int interrupt_init_v1_hw(struct hisi_hba *hisi_hba)
|
|||
|
||||
idx = (hisi_hba->n_phy * HISI_SAS_PHY_INT_NR) + hisi_hba->queue_count;
|
||||
for (i = 0; i < HISI_SAS_FATAL_INT_NR; i++, idx++) {
|
||||
irq = irq_of_parse_and_map(np, idx);
|
||||
irq = platform_get_irq(pdev, idx);
|
||||
if (!irq) {
|
||||
dev_err(dev, "irq init: could not map fatal interrupt %d\n",
|
||||
idx);
|
||||
|
|
Loading…
Reference in a new issue