From: Peng Li Date: Fri, 5 Jan 2018 10:18:23 +0000 (+0800) Subject: net: hns3: remove redundant semicolon X-Git-Tag: v4.19~1702^2~224^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e1ea493cc79dfb640a34398b9ea12c019e4a8cd;p=platform%2Fkernel%2Flinux-rpi.git net: hns3: remove redundant semicolon There is a redundant semicolon, this patch removes it. Signed-off-by: Peng Li Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c index f74b66a..655f522 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -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;