Skip to content
Commit 357b565d authored by Will Deacon's avatar Will Deacon
Browse files

drivers/perf: arm_pmu: avoid NULL dereference when not using devicetree

Commit c6b90653

 ("drivers/perf: arm_pmu: make info messages more
verbose") breaks booting on systems where the PMU is probed without
devicetree (e.g by inspecting the MIDR of the current CPU). In this case,
pdev->dev.of_node is NULL and we shouldn't try to access its ->fullname
field when printing probe error messages.

This patch fixes the probing code to use of_node_full_name, which safely
handles NULL nodes and removes the "Error %i" part of the string, since
it's not terribly useful.

Reported-by: default avatarGuenter Roeck <private@roeck-us.net>
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
parent fe638401
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment