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

Commit bab59b44 authored by Tomi Valkeinen's avatar Tomi Valkeinen
Browse files

OMAP: OMAPFB: make omapfb start even when a display is missing a driver



Currently omapfb wants that all the display devices have a driver,
otherwise omapfb refuses to start. There's no real requirement to act
like that, and this patch will make omapfb give a warning and skip that
device.

Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent dc35835c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2373,9 +2373,10 @@ static int omapfb_probe(struct platform_device *pdev)
		omap_dss_get_device(dssdev);

		if (!dssdev->driver) {
			dev_err(&pdev->dev, "no driver for display: %s\n",
			dev_warn(&pdev->dev, "no driver for display: %s\n",
				dssdev->name);
			r = -ENODEV;
			omap_dss_put_device(dssdev);
			continue;
		}

		d = &fbdev->displays[fbdev->num_displays++];