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

Commit 67d02a1b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Greg Kroah-Hartman
Browse files

driver-core: platform: probe of-devices only using list of compatibles



There are several indications that make a platform device match a
platform driver. For devices that are instantiated by a device tree
matching by name, id table or acpi mechanisms doesn't make sense and
might result in surprising effects. So limit matching to use the
driver's of_match_table for these.

Acked-by: default avatarThierry Reding <treding@nvidia.com>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cf68d855
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -949,8 +949,8 @@ static int platform_match(struct device *dev, struct device_driver *drv)
		return !strcmp(pdev->driver_override, drv->name);

	/* Attempt an OF style match first */
	if (of_driver_match_device(dev, drv))
		return 1;
	if (pdev->dev.of_node)
		return of_driver_match_device(dev, drv);

	/* Then try ACPI style match */
	if (acpi_driver_match_device(dev, drv))