staging: qlge: Fix function argument alignment warning in ql_init_device
authorRylan Dmello <mail@rylan.coffee>
Thu, 30 Apr 2020 01:35:15 +0000 (21:35 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 5 May 2020 10:20:40 +0000 (12:20 +0200)
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>
drivers/staging/qlge/qlge_main.c

index fa708c7..93df4f7 100644 (file)
@@ -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;