From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751586Ab2BOFAR (ORCPT ); Wed, 15 Feb 2012 00:00:17 -0500 Received: from ozlabs.org ([203.10.76.45]:52846 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750958Ab2BOFAM (ORCPT ); Wed, 15 Feb 2012 00:00:12 -0500 From: Rusty Russell To: linux-kernel@vger.kernel.org Message-ID: <1329281884.20530.rusty@rustcorp.com.au> Date: Wed, 15 Feb 2012 15:28:04 +1030 Subject: [PATCH 10/12] drivers/cpufreq/db8500-cpufreq: remove references to cpu_*_map. Cc: cpufreq@vger.kernel.org Cc: davej@redhat.com Cc: jonas.aberg@stericsson.com Cc: martin.persson@stericsson.com Cc: sundar.iyer@stericsson.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rusty Russell This has been obsolescent for a while; time for the final push. Signed-off-by: Rusty Russell Cc: Dave Jones Cc: cpufreq@vger.kernel.org Cc: Sundar Iyer Cc: Martin Persson Cc: Jonas Aaberg --- drivers/cpufreq/db8500-cpufreq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cpufreq/db8500-cpufreq.c b/drivers/cpufreq/db8500-cpufreq.c --- a/drivers/cpufreq/db8500-cpufreq.c +++ b/drivers/cpufreq/db8500-cpufreq.c @@ -145,7 +145,7 @@ static int __cpuinit db8500_cpufreq_init policy->cpuinfo.transition_latency = 20 * 1000; /* in ns */ /* policy sharing between dual CPUs */ - cpumask_copy(policy->cpus, &cpu_present_map); + cpumask_copy(policy->cpus, cpu_present_mask); policy->shared_type = CPUFREQ_SHARED_TYPE_ALL;