]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: hns3: remove redundant semicolon
authorPeng Li <lipeng321@huawei.com>
Fri, 5 Jan 2018 10:18:23 +0000 (18:18 +0800)
committerSeth Forshee <seth.forshee@canonical.com>
Fri, 16 Mar 2018 15:47:33 +0000 (10:47 -0500)
BugLink: http://bugs.launchpad.net/bugs/1756097
There is a redundant semicolon, this patch removes it.

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit 2e1ea493cc79dfb640a34398b9ea12c019e4a8cd)
Signed-off-by: Manoj Iyer <manoj.iyer@canonical.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c

index f74b66a7a56f0edaa3237f2e54804028015864e3..655f522e44aaefff72776ed9d16992ebde71b21c 100644 (file)
@@ -1288,7 +1288,7 @@ static int hclgevf_pci_init(struct hclgevf_dev *hdev)
        pci_set_master(pdev);
        hw = &hdev->hw;
        hw->hdev = hdev;
-       hw->io_base = pci_iomap(pdev, 2, 0);;
+       hw->io_base = pci_iomap(pdev, 2, 0);
        if (!hw->io_base) {
                dev_err(&pdev->dev, "can't map configuration register space\n");
                ret = -ENOMEM;