|
@@ -82,9 +82,17 @@ static struct of_device_id __initdata of_bus_ids[] = {
|
|
|
|
|
|
void __init mpc512x_declare_of_platform_devices(void)
|
|
|
{
|
|
|
+ struct device_node *np;
|
|
|
+
|
|
|
if (of_platform_bus_probe(NULL, of_bus_ids, NULL))
|
|
|
printk(KERN_ERR __FILE__ ": "
|
|
|
"Error while probing of_platform bus\n");
|
|
|
+
|
|
|
+ np = of_find_compatible_node(NULL, NULL, "fsl,mpc5121-nfc");
|
|
|
+ if (np) {
|
|
|
+ of_platform_device_create(np, NULL, NULL);
|
|
|
+ of_node_put(np);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void __init mpc512x_init(void)
|