Commit 46d2db82 authored by Jingoo Han's avatar Jingoo Han Committed by Tomi Valkeinen

video: amba-clcd: 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: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent ad86abd8
...@@ -544,7 +544,7 @@ static int clcdfb_register(struct clcd_fb *fb) ...@@ -544,7 +544,7 @@ static int clcdfb_register(struct clcd_fb *fb)
static int clcdfb_probe(struct amba_device *dev, const struct amba_id *id) static int clcdfb_probe(struct amba_device *dev, const struct amba_id *id)
{ {
struct clcd_board *board = dev->dev.platform_data; struct clcd_board *board = dev_get_platdata(&dev->dev);
struct clcd_fb *fb; struct clcd_fb *fb;
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment