mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 07:56:45 +07:00
[POWERPC] fsl: Add warning for unrecognized I2C nodes in the device tree
Update of_find_i2c_driver in fsl_soc.c to display a warning message if an I2C node in the device tree isn't found in the i2c_devices[] array. Signed-off-by: Timur Tabi <timur@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
692d1037e6
commit
22fb7d9be5
@ -448,6 +448,10 @@ static int __init of_find_i2c_driver(struct device_node *node,
|
||||
return -ENOMEM;
|
||||
return 0;
|
||||
}
|
||||
|
||||
pr_warning("fsl_soc.c: unrecognized i2c node %s\n",
|
||||
(const char *) of_get_property(node, "compatible", NULL));
|
||||
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user