mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 13:51:44 +00:00
video: sa1100fb: use devm_clk_get()
Use devm_clk_get() to get the clock for the LCD. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
This commit is contained in:
parent
ba1d36ba09
commit
e43064ccd4
@ -1230,10 +1230,9 @@ static int sa1100fb_probe(struct platform_device *pdev)
|
|||||||
if (!fbi)
|
if (!fbi)
|
||||||
goto failed;
|
goto failed;
|
||||||
|
|
||||||
fbi->clk = clk_get(&pdev->dev, NULL);
|
fbi->clk = devm_clk_get(&pdev->dev, NULL);
|
||||||
if (IS_ERR(fbi->clk)) {
|
if (IS_ERR(fbi->clk)) {
|
||||||
ret = PTR_ERR(fbi->clk);
|
ret = PTR_ERR(fbi->clk);
|
||||||
fbi->clk = NULL;
|
|
||||||
goto failed;
|
goto failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1289,8 +1288,6 @@ static int sa1100fb_probe(struct platform_device *pdev)
|
|||||||
failed:
|
failed:
|
||||||
if (fbi)
|
if (fbi)
|
||||||
iounmap(fbi->base);
|
iounmap(fbi->base);
|
||||||
if (fbi->clk)
|
|
||||||
clk_put(fbi->clk);
|
|
||||||
release_mem_region(res->start, resource_size(res));
|
release_mem_region(res->start, resource_size(res));
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user