drivers/video: compile fixes for fsl-diu-fb.c
Fix a compiler errors introduced in:
commit ddd3d90543
Author: Timur Tabi <timur@freescale.com>
drivers/video: fsl-diu-fb: merge all allocated data into one block
Signed-off-by: Michael Neuling <mikey@neuling.org>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
This commit is contained in:
committed by
Florian Tobias Schandinat
parent
f787f32e67
commit
f7f5ef0afd
@@ -1432,7 +1432,7 @@ static int fsl_diu_suspend(struct platform_device *ofdev, pm_message_t state)
|
|||||||
struct fsl_diu_data *data;
|
struct fsl_diu_data *data;
|
||||||
|
|
||||||
data = dev_get_drvdata(&ofdev->dev);
|
data = dev_get_drvdata(&ofdev->dev);
|
||||||
disable_lcdc(data->fsl_diu_info[0]);
|
disable_lcdc(data->fsl_diu_info);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -1442,7 +1442,7 @@ static int fsl_diu_resume(struct platform_device *ofdev)
|
|||||||
struct fsl_diu_data *data;
|
struct fsl_diu_data *data;
|
||||||
|
|
||||||
data = dev_get_drvdata(&ofdev->dev);
|
data = dev_get_drvdata(&ofdev->dev);
|
||||||
enable_lcdc(data->fsl_diu_info[0]);
|
enable_lcdc(data->fsl_diu_info);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user