Skip to content

Commit

Permalink
ARM: berlin: register cpufreq-dt
Browse files Browse the repository at this point in the history
The Berlin SoCs use cpufreq-dt for cpufreq. Register a platform device.

Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
  • Loading branch information
atenart authored and shesselba committed Sep 21, 2015
1 parent 6ff33f3 commit e1a3e72
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arch/arm/mach-berlin/berlin.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,19 @@
#include <asm/hardware/cache-l2x0.h>
#include <asm/mach/arch.h>

static void __init berlin_init_late(void)
{
platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
}

static const char * const berlin_dt_compat[] = {
"marvell,berlin",
NULL,
};

DT_MACHINE_START(BERLIN_DT, "Marvell Berlin")
.dt_compat = berlin_dt_compat,
.init_late = berlin_init_late,
/*
* with DT probing for L2CCs, berlin_init_machine can be removed.
* Note: 88DE3005 (Armada 1500-mini) uses pl310 l2cc
Expand Down

0 comments on commit e1a3e72

Please sign in to comment.