Browse Source

[PATCH] w100fb: platform device conversion fixup

Fix an error in w100fb after the platform device conversion.

Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Richard Purdie 19 years ago
parent
commit
afdd3b3c8e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/video/w100fb.c

+ 1 - 1
drivers/video/w100fb.c

@@ -514,7 +514,7 @@ int __init w100fb_probe(struct platform_device *pdev)
 	if (remapped_fbuf == NULL)
 		goto out;
 
-	info=framebuffer_alloc(sizeof(struct w100fb_par), dev);
+	info=framebuffer_alloc(sizeof(struct w100fb_par), &pdev->dev);
 	if (!info) {
 		err = -ENOMEM;
 		goto out;