@@ -1602,14 +1602,16 @@ const struct intel_pinctrl_soc_data *intel_pinctrl_get_soc_data(struct platform_
const struct intel_pinctrl_soc_data **table;
struct acpi_device *adev;
unsigned int i;
+ char *uid;
adev = ACPI_COMPANION(&pdev->dev);
if (adev) {
const void *match = device_get_match_data(&pdev->dev);
+ uid = adev->pnp.unique_id ?: "0";
table = (const struct intel_pinctrl_soc_data **)match;
for (i = 0; table[i]; i++) {
- if (!strcmp(adev->pnp.unique_id, table[i]->uid)) {
+ if (!strcmp(uid, table[i]->uid)) {
data = table[i];
break;
}
There's an EHL board that the DSDT doesn't have _UID for pinctrl device, and that causes a NULL pointer dereference in strcmp(). So in the absence of _UID, assume it's 0 by default to avoid the issue and get a pinmap. Signed-off-by: Kai-Heng Feng <kai.heng.feng@canonical.com> --- drivers/pinctrl/intel/pinctrl-intel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)