mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
video: pxafb: add clk_prepare/clk_unprepare calls
This patch adds clk_prepare/clk_unprepare calls to the pxafb driver by using the helper functions clk_prepare_enable and clk_disable_unprepare. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Cc: Haojian Zhuang <haojian.zhuang@marvell.com> Cc: Eric Miao <eric.y.miao@gmail.com> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
parent
cfc4bcfe84
commit
b622f1b538
@ -1435,7 +1435,7 @@ static void pxafb_enable_controller(struct pxafb_info *fbi)
|
|||||||
pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
|
pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
|
||||||
|
|
||||||
/* enable LCD controller clock */
|
/* enable LCD controller clock */
|
||||||
clk_enable(fbi->clk);
|
clk_prepare_enable(fbi->clk);
|
||||||
|
|
||||||
if (fbi->lccr0 & LCCR0_LCDT)
|
if (fbi->lccr0 & LCCR0_LCDT)
|
||||||
return;
|
return;
|
||||||
@ -1475,7 +1475,7 @@ static void pxafb_disable_controller(struct pxafb_info *fbi)
|
|||||||
wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
|
wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
|
||||||
|
|
||||||
/* disable LCD controller clock */
|
/* disable LCD controller clock */
|
||||||
clk_disable(fbi->clk);
|
clk_disable_unprepare(fbi->clk);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user