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

Commit aa2091b5 authored by Grant Likely's avatar Grant Likely
Browse files

[POWERPC] MPC52xx: Drop show_cpuinfo platform hooks from Lite5200



This hook doesn't really add any new information.

Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarSylvain Munaut <tnt@246tnt.com>
parent dcccb37e
Loading
Loading
Loading
Loading
+0 −15
Original line number Original line Diff line number Diff line
@@ -150,20 +150,6 @@ static void __init lite5200_setup_arch(void)


}
}


static void lite5200_show_cpuinfo(struct seq_file *m)
{
	struct device_node* np = of_find_all_nodes(NULL);
	const char *model = NULL;

	if (np)
		model = of_get_property(np, "model", NULL);

	seq_printf(m, "vendor\t\t:	Freescale Semiconductor\n");
	seq_printf(m, "machine\t\t:	%s\n", model ? model : "unknown");

	of_node_put(np);
}

/*
/*
 * Called very early, MMU is off, device-tree isn't unflattened
 * Called very early, MMU is off, device-tree isn't unflattened
 */
 */
@@ -187,6 +173,5 @@ define_machine(lite5200) {
	.init		= mpc52xx_declare_of_platform_devices,
	.init		= mpc52xx_declare_of_platform_devices,
	.init_IRQ 	= mpc52xx_init_irq,
	.init_IRQ 	= mpc52xx_init_irq,
	.get_irq 	= mpc52xx_get_irq,
	.get_irq 	= mpc52xx_get_irq,
	.show_cpuinfo	= lite5200_show_cpuinfo,
	.calibrate_decr	= generic_calibrate_decr,
	.calibrate_decr	= generic_calibrate_decr,
};
};