staging: qlge: Fix function argument alignment warning in ql_init_device
Fix checkpatch.pl check: CHECK: Alignment should match open parenthesis Signed-off-by: Rylan Dmello <mail@rylan.coffee> Link: https://lore.kernel.org/r/12c7c34330b410e4ee8b9b5634f1a50ceb9c3590.1588209862.git.mail@rylan.coffee Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
2ceed067e8
commit
8d8a1424a0
@@ -4433,8 +4433,7 @@ static int ql_init_device(struct pci_dev *pdev, struct net_device *ndev,
|
||||
pdev->needs_freset = 1;
|
||||
pci_save_state(pdev);
|
||||
qdev->reg_base =
|
||||
ioremap(pci_resource_start(pdev, 1),
|
||||
pci_resource_len(pdev, 1));
|
||||
ioremap(pci_resource_start(pdev, 1), pci_resource_len(pdev, 1));
|
||||
if (!qdev->reg_base) {
|
||||
dev_err(&pdev->dev, "Register mapping failed.\n");
|
||||
err = -ENOMEM;
|
||||
@@ -4443,8 +4442,7 @@ static int ql_init_device(struct pci_dev *pdev, struct net_device *ndev,
|
||||
|
||||
qdev->doorbell_area_size = pci_resource_len(pdev, 3);
|
||||
qdev->doorbell_area =
|
||||
ioremap(pci_resource_start(pdev, 3),
|
||||
pci_resource_len(pdev, 3));
|
||||
ioremap(pci_resource_start(pdev, 3), pci_resource_len(pdev, 3));
|
||||
if (!qdev->doorbell_area) {
|
||||
dev_err(&pdev->dev, "Doorbell register mapping failed.\n");
|
||||
err = -ENOMEM;
|
||||
|
||||
Reference in New Issue
Block a user