Commit 6c8cfbf5 authored by Wang Qing's avatar Wang Qing Committed by Will Deacon
Browse files

perf: remove duplicate check on fwnode



fwnode is checked IS_ERR_OR_NULL in following check by
is_of_node() or is_acpi_device_node(), remove duplicate check.

Signed-off-by: default avatarWang Qing <wangqing@vivo.com>
Link: https://lore.kernel.org/r/1604644902-29655-1-git-send-email-wangqing@vivo.com


Signed-off-by: default avatarWill Deacon <will@kernel.org>
parent 53c218da
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -716,9 +716,6 @@ static int dsu_pmu_device_probe(struct platform_device *pdev)
	if (IS_ERR(dsu_pmu))
		return PTR_ERR(dsu_pmu);

	if (IS_ERR_OR_NULL(fwnode))
		return -ENOENT;

	if (is_of_node(fwnode))
		rc = dsu_pmu_dt_get_cpus(&pdev->dev, &dsu_pmu->associated_cpus);
	else if (is_acpi_device_node(fwnode))