diff mbox series

phy: ti: phy-j721e-wiz: convert comma to semicolon

Message ID 20240710031626.2003110-1-nichen@iscas.ac.cn
State Accepted
Commit 0f20e326e723075f98456bacf8de475421f68be6
Headers show
Series phy: ti: phy-j721e-wiz: convert comma to semicolon | expand

Commit Message

Chen Ni July 10, 2024, 3:16 a.m. UTC
Replace a comma between expression statements by a semicolon.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 drivers/phy/ti/phy-j721e-wiz.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Vinod Koul Aug. 4, 2024, 5:51 p.m. UTC | #1
On Wed, 10 Jul 2024 11:16:26 +0800, Chen Ni wrote:
> Replace a comma between expression statements by a semicolon.
> 
> 

Applied, thanks!

[1/1] phy: ti: phy-j721e-wiz: convert comma to semicolon
      commit: 0f20e326e723075f98456bacf8de475421f68be6

Best regards,
diff mbox series

Patch

diff --git a/drivers/phy/ti/phy-j721e-wiz.c b/drivers/phy/ti/phy-j721e-wiz.c
index 7f626c597025..bb16fdfe63df 100644
--- a/drivers/phy/ti/phy-j721e-wiz.c
+++ b/drivers/phy/ti/phy-j721e-wiz.c
@@ -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;