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

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

Merge "qcom: cpuss_dump: Do not return error if parsing child nodes fails"

parents 17177261 a3e27aa2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ static int cpuss_dump_probe(struct platform_device *pdev)
	static void *dump_vaddr;
	struct msm_dump_data *dump_data;
	struct msm_dump_entry dump_entry;
	int ret = 0;
	int ret;
	u32 size, id;

	for_each_available_child_of_node(node, child_node) {
@@ -87,7 +87,7 @@ static int cpuss_dump_probe(struct platform_device *pdev)
		}

	}
	return ret;
	return 0;
}

static int cpuss_dump_remove(struct platform_device *pdev)