Skip to content

Commit

Permalink
mbxfb: fix incorrect argument type
Browse files Browse the repository at this point in the history
Fix wrong pointer type passed into the dev_dbg() function.

Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Acked-by: Mike Rapoport <mike@compulab.co.il>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Krzysztof Helt authored and Linus Torvalds committed Mar 11, 2008
1 parent f700926 commit 1039edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/mbx/mbxfb.c
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ static int __devinit mbxfb_probe(struct platform_device *dev)
struct mbxfb_info *mfbi;
struct mbxfb_platform_data *pdata;

dev_dbg(dev, "mbxfb_probe\n");
dev_dbg(&dev->dev, "mbxfb_probe\n");

pdata = dev->dev.platform_data;
if (!pdata) {
Expand Down

0 comments on commit 1039edc

Please sign in to comment.