diff --git a/drivers/of/device.c b/drivers/of/device.c index b0800c260f64a219848888eee8762fafee0aef64..874f031442dc7bf1a631315591f7917deb3222f0 100644 --- a/drivers/of/device.c +++ b/drivers/of/device.c @@ -28,7 +28,7 @@ const struct of_device_id *of_match_device(const struct of_device_id *matches, const struct device *dev) { - if ((!matches) || (!dev->of_node)) + if (!matches || !dev->of_node || dev->of_node_reused) return NULL; return of_match_node(matches, dev->of_node); }