]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
phy: ti: phy-j721e-wiz: convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Wed, 10 Jul 2024 03:16:26 +0000 (11:16 +0800)
committerVinod Koul <vkoul@kernel.org>
Sun, 4 Aug 2024 17:49:47 +0000 (23:19 +0530)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://lore.kernel.org/r/20240710031626.2003110-1-nichen@iscas.ac.cn
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/ti/phy-j721e-wiz.c

index 7f626c59702503dbcf480857916bbfa76e0b6cc3..bb16fdfe63dfaa56dc967c002cccf64ff5a2e603 100644 (file)
@@ -1578,8 +1578,8 @@ static int wiz_probe(struct platform_device *pdev)
 
        phy_reset_dev = &wiz->wiz_phy_reset_dev;
        phy_reset_dev->dev = dev;
-       phy_reset_dev->ops = &wiz_phy_reset_ops,
-       phy_reset_dev->owner = THIS_MODULE,
+       phy_reset_dev->ops = &wiz_phy_reset_ops;
+       phy_reset_dev->owner = THIS_MODULE;
        phy_reset_dev->of_node = node;
        /* Reset for each of the lane and one for the entire SERDES */
        phy_reset_dev->nr_resets = num_lanes + 1;