[PATCH 4/9] ARM: pmu: remove arm_pmu_type enumeration
From: Jiandong Zheng <hidden>
Date: 2012-08-14 16:53:54
On 8/14/2012 1:43 AM, Sudeep KarkadaNagesha wrote:
Hi Jiandong, On 13/08/12 22:57, Jiandong Zheng wrote:quoted
On 8/10/2012 10:36 AM, Will Deacon wrote:quoted
From: Sudeep KarkadaNagesha <redacted> static struct platform_device pmu_device = { .name = "arm-pmu", - .id = ARM_PMU_DEVICE_CPU, + .id = -1, .resource = &pmu_resource, .num_resources = 1, };Isn't it clearer to define a meaningful name for "-1", esp. if "-1" is being checked somewhere else?No platform_device->id is not being referred anywhere. ARM_PMU_DEVICE_CPU was initially assigned to id to identify different PMU types through platform_device->id variable but was never used. Also for all new platforms that might support multiple PMUs, we can use device tree to identify them.
Seems it is just a field not in use. Even though I still prefer something like "ARM_PMU_DEFAULT_ID" to "-1", I am OK with "-1" as well. Acked-by: Jiandong Zheng <redacted> Thanks, JD