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

Commit dfee4111 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Chanwoo Choi
Browse files

extcon: max8997: Fix NULL pointer exception on missing pdata



Fix NULL pointer exception when platform data is not supplied. The
driver dereferenced pdata pointer where it could be NULL.

Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Cc: <stable@vger.kernel.org>
Fixes: 810d601f
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent d5653f2b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -715,7 +715,7 @@ static int max8997_muic_probe(struct platform_device *pdev)
		goto err_irq;
	}

	if (pdata->muic_pdata) {
	if (pdata && pdata->muic_pdata) {
		struct max8997_muic_platform_data *muic_pdata
			= pdata->muic_pdata;