Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <[email protected]>
---
 drivers/phy/ti/phy-j721e-wiz.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/phy/ti/phy-j721e-wiz.c b/drivers/phy/ti/phy-j721e-wiz.c
index c9cfafe89cbf..73eb92b5817b 100644
--- a/drivers/phy/ti/phy-j721e-wiz.c
+++ b/drivers/phy/ti/phy-j721e-wiz.c
@@ -922,8 +922,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;
-- 
2.22.0

Reply via email to