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

Commit 493a584a authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Tomi Valkeinen
Browse files

fbdev: omap2: Fix typo in tvc_probe_pdata



Assigning ddata->invert_polarity to itself is not very useful; the
context suggests that the right-hand side should have been
pdata->invert_polarity.

Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent 1a257be1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ static int tvc_probe_pdata(struct platform_device *pdev)
	ddata->in = in;

	ddata->connector_type = pdata->connector_type;
	ddata->invert_polarity = ddata->invert_polarity;
	ddata->invert_polarity = pdata->invert_polarity;

	dssdev = &ddata->dssdev;
	dssdev->name = pdata->name;