Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 291559
b: refs/heads/master
c: 4823cd3
h: refs/heads/master
i:
  291557: 08a1878
  291555: 0aa040f
  291551: 729656d
v: v3
  • Loading branch information
Philipp Zabel authored and David S. Miller committed Mar 17, 2012
1 parent c78cba5 commit 376d380
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 124d37e9f088a8f56494b0264d63d22555f53fef
refs/heads/master: 4823cd388dd68015e254d1449bd63ffe47d83fa7
6 changes: 3 additions & 3 deletions trunk/drivers/net/irda/pxaficp_ir.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand Down

0 comments on commit 376d380

Please sign in to comment.