mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
i3c: master: Fix an error checking typo in 'cdns_i3c_master_probe()'
Fix a cut'n'paste typo.
Checking 'master->sysclk' is expected here.
Fixes: 603f2bee2c
("i3c: master: Add driver for Cadence IP")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
01684db950
commit
52768f3242
@ -1556,8 +1556,8 @@ static int cdns_i3c_master_probe(struct platform_device *pdev)
|
||||
return PTR_ERR(master->pclk);
|
||||
|
||||
master->sysclk = devm_clk_get(&pdev->dev, "sysclk");
|
||||
if (IS_ERR(master->pclk))
|
||||
return PTR_ERR(master->pclk);
|
||||
if (IS_ERR(master->sysclk))
|
||||
return PTR_ERR(master->sysclk);
|
||||
|
||||
irq = platform_get_irq(pdev, 0);
|
||||
if (irq < 0)
|
||||
|
Loading…
Reference in New Issue
Block a user