From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaecheol Lee Subject: [PATCH 5/5] ARM: S5PV210: Update Kconfig and Makefile for supporting CPUFREQ driver Date: Wed, 15 Sep 2010 16:52:42 +0900 Message-ID: <1284537162-3129-6-git-send-email-jc.lee@samsung.com> References: <1284537162-3129-1-git-send-email-jc.lee@samsung.com> Return-path: Received: from ganesha.gnumonks.org ([213.95.27.120]:48439 "EHLO ganesha.gnumonks.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751768Ab0IOIId (ORCPT ); Wed, 15 Sep 2010 04:08:33 -0400 In-Reply-To: <1284537162-3129-1-git-send-email-jc.lee@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Cc: ben-linux@fluff.org, kgene.kim@samsung.com, Jaecheol Lee This patch adds ARCH_HAS_CPUFREQ in arch/arm/Kconfig for S5PV210, and updates mach-s5pv210/Makefile for supporting build CPUFREQ driver. Signed-off-by: Jaecheol Lee --- arch/arm/Kconfig | 1 + arch/arm/mach-s5pv210/Makefile | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index bce9193..7bff1d2 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -721,6 +721,7 @@ config ARCH_S5PV210 select GENERIC_GPIO select HAVE_CLK select ARM_L1_CACHE_SHIFT_6 + select ARCH_HAS_CPUFREQ select ARCH_USES_GETTIMEOFFSET select HAVE_S3C2410_I2C select HAVE_S3C_RTC diff --git a/arch/arm/mach-s5pv210/Makefile b/arch/arm/mach-s5pv210/Makefile index 7045489..833d803 100644 --- a/arch/arm/mach-s5pv210/Makefile +++ b/arch/arm/mach-s5pv210/Makefile @@ -14,6 +14,7 @@ obj- := obj-$(CONFIG_CPU_S5PV210) += cpu.o init.o clock.o dma.o gpiolib.o obj-$(CONFIG_CPU_S5PV210) += setup-i2c0.o +obj-$(CONFIG_CPU_FREQ) += cpufreq.o # machine support -- 1.6.2.5