Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 16766
b: refs/heads/master
c: f99c892
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Pisa authored and Russell King committed Jan 7, 2006
1 parent 6921a85 commit 57e0b37
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: 5b2e98cdf3a6ac6c57de6a2156c673d4b0262684
refs/heads/master: f99c89297cd6995ccad6394c87383941c2570fe9
6 changes: 3 additions & 3 deletions trunk/drivers/video/imxfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ static int __init imxfb_probe(struct platform_device *pdev)

inf = pdev->dev.platform_data;
if(!inf) {
dev_err(dev,"No platform_data available\n");
dev_err(&pdev->dev,"No platform_data available\n");
return -ENOMEM;
}

Expand All @@ -579,7 +579,7 @@ static int __init imxfb_probe(struct platform_device *pdev)
if (!inf->fixed_screen_cpu) {
ret = imxfb_map_video_memory(info);
if (ret) {
dev_err(dev, "Failed to allocate video RAM: %d\n", ret);
dev_err(&pdev->dev, "Failed to allocate video RAM: %d\n", ret);
ret = -ENOMEM;
goto failed_map;
}
Expand Down Expand Up @@ -608,7 +608,7 @@ static int __init imxfb_probe(struct platform_device *pdev)
imxfb_set_par(info);
ret = register_framebuffer(info);
if (ret < 0) {
dev_err(dev, "failed to register framebuffer\n");
dev_err(&pdev->dev, "failed to register framebuffer\n");
goto failed_register;
}

Expand Down

0 comments on commit 57e0b37

Please sign in to comment.