From: Mark Rutland Date: Fri, 23 May 2014 11:27:37 +0000 (+0100) Subject: arm: pxa: specify PMUs are for XScale CPUs X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f9eff219761338402b5e109bfdb2daa9f6b30b8c;p=linux-beck.git arm: pxa: specify PMUs are for XScale CPUs Now that we can specify which PMU variant we're likely to deal with, do so in the pxa board code. This will allow us to split the ARMv6, ARMv7, and XScale PMU drivers. Signed-off-by: Mark Rutland Acked-by: Robert Jarzmik Cc: Arnd Bergmann Cc: Daniel Mack Cc: Haojian Zhuang Cc: Olof Johansson Signed-off-by: Olof Johansson --- diff --git a/arch/arm/mach-pxa/devices.c b/arch/arm/mach-pxa/devices.c index ac7b3eabbd85..35434662dc7c 100644 --- a/arch/arm/mach-pxa/devices.c +++ b/arch/arm/mach-pxa/devices.c @@ -40,7 +40,7 @@ static struct resource pxa_resource_pmu = { }; struct platform_device pxa_device_pmu = { - .name = "arm-pmu", + .name = "xscale-pmu", .id = -1, .resource = &pxa_resource_pmu, .num_resources = 1,