mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-22 02:17:36 -04:00
phy: lynx-28g: require an OF node to probe
The driver will gain support for variants in an upcoming change, and will use of_device_get_match_data() to deduce the running variant from the compatible string. Currently, the driver expects the schema at phy/fsl,lynx-28g.yaml, and OF-based consumers, but doesn't enforce this. And it is possible for user space to force-bind the driver to a device without OF node using the driver_override sysfs. To avoid future surprise crashes for an unsupported configuration, explicitly test for the presence of an OF node and fail probing if found. Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Ioana Ciornei <ioana.ciornei@nxp.com> Tested-by: Josua Mayer <josua@solid-run.com> Link: https://patch.msgid.link/20260511150023.1903577-4-vladimir.oltean@nxp.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
committed by
Vinod Koul
parent
37056ea140
commit
c9d80e8610
@@ -1286,6 +1286,12 @@ static int lynx_28g_probe(struct platform_device *pdev)
|
||||
struct device_node *dn;
|
||||
int err;
|
||||
|
||||
dn = dev_of_node(dev);
|
||||
if (!dn) {
|
||||
dev_err(dev, "Device requires an OF node\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
||||
if (!priv)
|
||||
return -ENOMEM;
|
||||
@@ -1301,7 +1307,6 @@ static int lynx_28g_probe(struct platform_device *pdev)
|
||||
|
||||
lynx_28g_pll_read_configuration(priv);
|
||||
|
||||
dn = dev_of_node(dev);
|
||||
if (of_get_child_count(dn)) {
|
||||
struct device_node *child;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user