mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 23:16:39 +07:00
net/irda: add clk_prepare/clk_unprepare to pxaficp_ir
This patch adds clk_prepare/clk_unprepare calls to the pxaficp_ir driver by using the helper functions clk_prepare_enable and clk_disable_unprepare. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Cc: Eric Miao <eric.y.miao@gmail.com> Cc: Haojian Zhuang <haojian.zhuang@marvell.com> Cc: Samuel Ortiz <samuel@sortiz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
124d37e9f0
commit
4823cd388d
@ -128,20 +128,20 @@ struct pxa_irda {
|
||||
static inline void pxa_irda_disable_clk(struct pxa_irda *si)
|
||||
{
|
||||
if (si->cur_clk)
|
||||
clk_disable(si->cur_clk);
|
||||
clk_disable_unprepare(si->cur_clk);
|
||||
si->cur_clk = NULL;
|
||||
}
|
||||
|
||||
static inline void pxa_irda_enable_firclk(struct pxa_irda *si)
|
||||
{
|
||||
si->cur_clk = si->fir_clk;
|
||||
clk_enable(si->fir_clk);
|
||||
clk_prepare_enable(si->fir_clk);
|
||||
}
|
||||
|
||||
static inline void pxa_irda_enable_sirclk(struct pxa_irda *si)
|
||||
{
|
||||
si->cur_clk = si->sir_clk;
|
||||
clk_enable(si->sir_clk);
|
||||
clk_prepare_enable(si->sir_clk);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user