diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-07-10 05:16:26 +0200 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-08-04 19:49:47 +0200 |
commit | 0f20e326e723075f98456bacf8de475421f68be6 (patch) | |
tree | cc40015b8ff5c1c4a84263a9a130d3a23b67a032 /drivers/phy | |
parent | phy: marvell: phy-mvebu-cp110-comphy: improve eth_port1 on comphy4 (diff) | |
download | linux-0f20e326e723075f98456bacf8de475421f68be6.tar.xz linux-0f20e326e723075f98456bacf8de475421f68be6.zip |
phy: ti: phy-j721e-wiz: convert comma to semicolon
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>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/ti/phy-j721e-wiz.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |