mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 06:37:10 +07:00
drm/exynos: rotator: convert to common clock framework
This driver was not used after introduction of common clock framework. This patch adds missing prepare/unprepare calls and allows to use it again with current kernel code. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
aeefb36832
commit
43f02a6cbb
@ -790,10 +790,10 @@ static int rotator_remove(struct platform_device *pdev)
|
||||
static int rotator_clk_crtl(struct rot_context *rot, bool enable)
|
||||
{
|
||||
if (enable) {
|
||||
clk_enable(rot->clock);
|
||||
clk_prepare_enable(rot->clock);
|
||||
rot->suspended = false;
|
||||
} else {
|
||||
clk_disable(rot->clock);
|
||||
clk_disable_unprepare(rot->clock);
|
||||
rot->suspended = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user