forked from Minki/linux
video: s1d13xxxfb: 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> Acked-by: Kristoffer Ericson <kristoffer.ericson@gmail.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
3b2633fb1b
commit
772ee6daf1
@ -777,8 +777,8 @@ static int s1d13xxxfb_probe(struct platform_device *pdev)
|
|||||||
printk(KERN_INFO "Epson S1D13XXX FB Driver\n");
|
printk(KERN_INFO "Epson S1D13XXX FB Driver\n");
|
||||||
|
|
||||||
/* enable platform-dependent hardware glue, if any */
|
/* enable platform-dependent hardware glue, if any */
|
||||||
if (pdev->dev.platform_data)
|
if (dev_get_platdata(&pdev->dev))
|
||||||
pdata = pdev->dev.platform_data;
|
pdata = dev_get_platdata(&pdev->dev);
|
||||||
|
|
||||||
if (pdata && pdata->platform_init_video)
|
if (pdata && pdata->platform_init_video)
|
||||||
pdata->platform_init_video();
|
pdata->platform_init_video();
|
||||||
@ -923,8 +923,8 @@ static int s1d13xxxfb_suspend(struct platform_device *dev, pm_message_t state)
|
|||||||
lcd_enable(s1dfb, 0);
|
lcd_enable(s1dfb, 0);
|
||||||
crt_enable(s1dfb, 0);
|
crt_enable(s1dfb, 0);
|
||||||
|
|
||||||
if (dev->dev.platform_data)
|
if (dev_get_platdata(&dev->dev))
|
||||||
pdata = dev->dev.platform_data;
|
pdata = dev_get_platdata(&dev->dev);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
if (!s1dfb->disp_save)
|
if (!s1dfb->disp_save)
|
||||||
@ -973,8 +973,8 @@ static int s1d13xxxfb_resume(struct platform_device *dev)
|
|||||||
while ((s1d13xxxfb_readreg(s1dfb, S1DREG_PS_STATUS) & 0x01))
|
while ((s1d13xxxfb_readreg(s1dfb, S1DREG_PS_STATUS) & 0x01))
|
||||||
udelay(10);
|
udelay(10);
|
||||||
|
|
||||||
if (dev->dev.platform_data)
|
if (dev_get_platdata(&dev->dev))
|
||||||
pdata = dev->dev.platform_data;
|
pdata = dev_get_platdata(&dev->dev);
|
||||||
|
|
||||||
if (s1dfb->regs_save) {
|
if (s1dfb->regs_save) {
|
||||||
/* will write RO regs, *should* get away with it :) */
|
/* will write RO regs, *should* get away with it :) */
|
||||||
|
Loading…
Reference in New Issue
Block a user