diff options
author | Mark Rutland <[email protected]> | 2014-05-23 14:39:39 +0100 |
---|---|---|
committer | Olof Johansson <[email protected]> | 2015-02-06 00:12:59 -0800 |
commit | b22a75cf9d9dfc0193fbd1251acf1925872a5be3 (patch) | |
tree | 1480c2363927651fb116df0ffe9856fcea2d0fcd | |
parent | f9eff219761338402b5e109bfdb2daa9f6b30b8c (diff) |
arm: iop: specify PMUs are for XScale CPUs
Now that we can specify which PMU variant we're likely to deal with, do
so in the iop board code. This will allow us to split the ARMv6, ARMv7,
and XScale PMU drivers.
Signed-off-by: Mark Rutland <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Cc: Arnd Bergmann <[email protected]>
Cc: Olof Johansson <[email protected]>
Cc: Russell King <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
-rw-r--r-- | arch/arm/plat-iop/pmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-iop/pmu.c b/arch/arm/plat-iop/pmu.c index ad9f9744a82d..c6d979ace524 100644 --- a/arch/arm/plat-iop/pmu.c +++ b/arch/arm/plat-iop/pmu.c @@ -24,7 +24,7 @@ static struct resource pmu_resource = { }; static struct platform_device pmu_device = { - .name = "arm-pmu", + .name = "xscale-pmu", .id = -1, .resource = &pmu_resource, .num_resources = 1, |