Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230504
b: refs/heads/master
c: 0b2e9cb
h: refs/heads/master
v: v3
  • Loading branch information
Jamie Iles authored and Paul Mundt committed Jan 12, 2011
1 parent 128fa92 commit 55033a7
Show file tree
Hide file tree
Showing 2 changed files with 4 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: ccd8c79c5608fc4835dcb0244623ceae2489f72d
refs/heads/master: 0b2e9cb42cd0b5b0c95a776e30c9ecdff16587ea
5 changes: 3 additions & 2 deletions trunk/drivers/video/s3c2410fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/err.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/mm.h>
Expand Down Expand Up @@ -918,9 +919,9 @@ static int __devinit s3c24xxfb_probe(struct platform_device *pdev,
}

info->clk = clk_get(NULL, "lcd");
if (!info->clk || IS_ERR(info->clk)) {
if (IS_ERR(info->clk)) {
printk(KERN_ERR "failed to get lcd clock source\n");
ret = -ENOENT;
ret = PTR_ERR(info->clk);
goto release_irq;
}

Expand Down

0 comments on commit 55033a7

Please sign in to comment.