Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit afc10301 authored by Gwenhael Goavec-Merou's avatar Gwenhael Goavec-Merou Committed by Shawn Guo
Browse files

video: imxfb: fix imxfb_info configuration order



The devtype field for fbi (struct imxfb_info) must be set after memset call to
avoid some wrong behaviour (pixel size).

Signed-off-by: default avatarGwenhael Goavec-Merou <gwenhael.goavec-merou@armadeus.com>
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent 006e792b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -729,6 +729,8 @@ static int __init imxfb_init_fbinfo(struct platform_device *pdev)

	memset(fbi, 0, sizeof(struct imxfb_info));

	fbi->devtype = pdev->id_entry->driver_data;

	strlcpy(info->fix.id, IMX_NAME, sizeof(info->fix.id));

	info->fix.type			= FB_TYPE_PACKED_PIXELS;
@@ -789,7 +791,6 @@ static int __init imxfb_probe(struct platform_device *pdev)
		return -ENOMEM;

	fbi = info->par;
	fbi->devtype = pdev->id_entry->driver_data;

	if (!fb_mode)
		fb_mode = pdata->mode[0].mode.name;