diff options
| author | Chen Hui <[email protected]> | 2021-04-09 07:57:48 +0000 |
|---|---|---|
| committer | Lorenzo Pieralisi <[email protected]> | 2021-04-14 16:45:11 +0000 |
| commit | b1160a06e0ea8c59454bc13b8d2a21cf569c0ff5 (patch) | |
| tree | a49e67edd1b70739f48a6693b4ac11e2a0875fdd /drivers/pci/controller/pcie-altera-msi.c | |
| parent | Linux 5.12-rc2 (diff) | |
| download | kernel-b1160a06e0ea8c59454bc13b8d2a21cf569c0ff5.tar.gz kernel-b1160a06e0ea8c59454bc13b8d2a21cf569c0ff5.zip | |
PCI: altera-msi: Remove redundant dev_err call in altera_msi_probe()
There is a error message within devm_ioremap_resource()
already, so remove the dev_err() call to avoid redundant
error message.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Chen Hui <[email protected]>
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Reviewed-by: Ley Foon Tan <[email protected]>
Diffstat (limited to 'drivers/pci/controller/pcie-altera-msi.c')
| -rw-r--r-- | drivers/pci/controller/pcie-altera-msi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pci/controller/pcie-altera-msi.c b/drivers/pci/controller/pcie-altera-msi.c index 42691dd8ebef..98aa1dccc6e6 100644 --- a/drivers/pci/controller/pcie-altera-msi.c +++ b/drivers/pci/controller/pcie-altera-msi.c @@ -236,10 +236,8 @@ static int altera_msi_probe(struct platform_device *pdev) res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "vector_slave"); msi->vector_base = devm_ioremap_resource(&pdev->dev, res); - if (IS_ERR(msi->vector_base)) { - dev_err(&pdev->dev, "failed to map vector_slave memory\n"); + if (IS_ERR(msi->vector_base)) return PTR_ERR(msi->vector_base); - } msi->vector_phy = res->start; |
