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

Commit b7de35c2 authored by Camera Software Integration's avatar Camera Software Integration Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: common: Change judgement condition" into camera-kernel.lnx.4.0

parents 9655f948 1666f6b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ int cam_soc_bus_client_register(struct platform_device *pdev,
	bus_client_data->icc_data = icc_get(&pdev->dev,
		bus_client->common_data->src_id,
		bus_client->common_data->dst_id);
	if (!bus_client_data->icc_data) {
	if (IS_ERR_OR_NULL(bus_client_data->icc_data)) {
		CAM_ERR(CAM_UTIL, "failed in register bus client");
		rc = -EINVAL;
		goto error;