|
@@ -963,6 +963,8 @@ static const struct of_dev_auxdata sh73a0_auxdata_lookup[] __initconst = {
|
|
|
|
|
|
void __init sh73a0_add_standard_devices_dt(void)
|
|
|
{
|
|
|
+ struct platform_device_info devinfo = { .name = "cpufreq-cpu0", .id = -1, };
|
|
|
+
|
|
|
/* clocks are setup late during boot in the case of DT */
|
|
|
sh73a0_clock_init();
|
|
|
|
|
@@ -970,6 +972,9 @@ void __init sh73a0_add_standard_devices_dt(void)
|
|
|
ARRAY_SIZE(sh73a0_devices_dt));
|
|
|
of_platform_populate(NULL, of_default_bus_match_table,
|
|
|
sh73a0_auxdata_lookup, NULL);
|
|
|
+
|
|
|
+ /* Instantiate cpufreq-cpu0 */
|
|
|
+ platform_device_register_full(&devinfo);
|
|
|
}
|
|
|
|
|
|
static const char *sh73a0_boards_compat_dt[] __initdata = {
|