Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235733
b: refs/heads/master
c: 3073acd
h: refs/heads/master
i:
  235731: e7f6e0b
v: v3
  • Loading branch information
Julia Lawall authored and Greg Kroah-Hartman committed Jan 31, 2011
1 parent a373a99 commit 6cef4a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: da9fcb7260af0cd85351740b526afdc88d4f348a
refs/heads/master: 3073acd61cf278e4f85521186e937ab6e7fee739
4 changes: 2 additions & 2 deletions trunk/drivers/staging/msm/lcdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,12 +224,12 @@ static int __init lcdc_driver_init(void)
mdp_lcdc_pclk_clk = clk_get(NULL, "mdp_lcdc_pclk_clk");
if (IS_ERR(mdp_lcdc_pclk_clk)) {
printk(KERN_ERR "error: can't get mdp_lcdc_pclk_clk!\n");
return IS_ERR(mdp_lcdc_pclk_clk);
return PTR_ERR(mdp_lcdc_pclk_clk);
}
mdp_lcdc_pad_pclk_clk = clk_get(NULL, "mdp_lcdc_pad_pclk_clk");
if (IS_ERR(mdp_lcdc_pad_pclk_clk)) {
printk(KERN_ERR "error: can't get mdp_lcdc_pad_pclk_clk!\n");
return IS_ERR(mdp_lcdc_pad_pclk_clk);
return PTR_ERR(mdp_lcdc_pad_pclk_clk);
}
// pm_qos_add_requirement(PM_QOS_SYSTEM_BUS_FREQ , "lcdc",
// PM_QOS_DEFAULT_VALUE);
Expand Down

0 comments on commit 6cef4a3

Please sign in to comment.