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

Commit 1def2dee authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: display: qpic: Fix possible null dereference"

parents 876e2677 5a2ca5a6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -232,7 +232,7 @@ static int mdss_qpic_panel_probe(struct platform_device *pdev)
		return rc;

	/* select panel according to label */
	if (!strcmp(panel_name, "ili qvga lcdc panel")) {
	if (panel_name && !strcmp(panel_name, "ili qvga lcdc panel")) {
		qpic_panel_on = ili9341_on;
		qpic_panel_off = ili9341_off;
	} else {