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

Commit 8e2f4558 authored by Prateek Sood's avatar Prateek Sood
Browse files

msm: npu: Continue npu_probe() when !DEBUG_FS



npu_probe() should not be dependent on DEBUG_FS
API's returning success. Continue device probe,
when DEBUG_FS is disabled.

Change-Id: I2c32c2f96a7cec9847ce5f8c2082393e77a2ad7e
Signed-off-by: default avatarPrateek Sood <prsood@codeaurora.org>
parent fbad67d3
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -2626,9 +2626,7 @@ static int npu_probe(struct platform_device *pdev)
		goto error_res_init;
	}

	rc = npu_debugfs_init(npu_dev);
	if (rc)
		goto error_driver_init;
	npu_debugfs_init(npu_dev);

	rc = npu_host_init(npu_dev);
	if (rc) {