summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-17 05:09:37 (GMT)
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-09-20 09:22:03 (GMT)
commit3b2633fb1b8da59f0a160da7110a666b3e44b500 (patch)
tree9c79bf523c4c131b6e4f4668cc36cacd7cb224d5
parent1c8034c7f0a3b53bb27b0faa9a6e3f88da0322ea (diff)
downloadlinux-fsl-qoriq-3b2633fb1b8da59f0a160da7110a666b3e44b500.tar.xz
video: mbxfb: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. This is a cosmetic change to make the code simpler and enhance the readability. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r--drivers/video/mbx/mbxfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/mbx/mbxfb.c b/drivers/video/mbx/mbxfb.c
index 0c1a874..f87c4ef 100644
--- a/drivers/video/mbx/mbxfb.c
+++ b/drivers/video/mbx/mbxfb.c
@@ -890,7 +890,7 @@ static int mbxfb_probe(struct platform_device *dev)
dev_dbg(&dev->dev, "mbxfb_probe\n");
- pdata = dev->dev.platform_data;
+ pdata = dev_get_platdata(&dev->dev);
if (!pdata) {
dev_err(&dev->dev, "platform data is required\n");
return -EINVAL;