From patchwork Mon Mar 25 16:54:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 2332441 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 9E68BDF24C for ; Mon, 25 Mar 2013 16:57:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932329Ab3CYQzW (ORCPT ); Mon, 25 Mar 2013 12:55:22 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:61468 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932399Ab3CYQzU (ORCPT ); Mon, 25 Mar 2013 12:55:20 -0400 Received: by mail-pa0-f46.google.com with SMTP id wp1so1138152pac.19 for ; Mon, 25 Mar 2013 09:55:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references:x-gm-message-state; bh=PRK0BmtDgeGG/6Rj3TMcn5pvHwwtIF74ATOHFWD8Hx4=; b=mA36xV437eh0w4o98GaRuwnw+T1YBvNl2//DUdKy0NSdq1Gn1Uz6D155/MtoA3deIJ fLWaDbWofwyfZJNacVnbMblezQS8g2kS6RWugA4/ECGjnlQdpR+MlxYai81pRZoArN2o l0Ie3OPSlKbTiYth1RbDkOLCz0oOlUA8SjDqyyPJrW5GgUj4EudEAPrWq7wKX9h9uh9e 50sDVwHeZ26qNsL5ybVjbOGLfAMtGZRGC5zjBa8S8XJAWKjDK/9yTiwLsui/DrjX69Ti bKXSFqzv+YsoJpjn8SmIjlWJSnlBVup5+aDBcLWeurR26KjAoqS+McJliCqqRnKWFhvL 5rEw== X-Received: by 10.66.6.66 with SMTP id y2mr19267644pay.217.1364230519728; Mon, 25 Mar 2013 09:55:19 -0700 (PDT) Received: from localhost ([122.167.78.240]) by mx.google.com with ESMTPS id qb10sm14024142pbb.43.2013.03.25.09.55.14 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 25 Mar 2013 09:55:19 -0700 (PDT) From: Viresh Kumar To: rjw@sisk.pl Cc: arvind.chauhan@arm.com, robin.randhawa@arm.com, Steve.Bannister@arm.com, Liviu.Dudau@arm.com, charles.garcia-tobin@arm.com, cpufreq@vger.kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linaro-kernel@lists.linaro.org, arnd.bergmann@linaro.org, Viresh Kumar , Mike Frysinger , uclinux-dist-devel@blackfin.uclinux.org Subject: [PATCH 2/9] blackfin: cpufreq: move cpufreq driver to drivers/cpufreq Date: Mon, 25 Mar 2013 22:24:38 +0530 Message-Id: X-Mailer: git-send-email 1.7.12.rc2.18.g61b472e In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQmk4vNI9yiPY2OMFy5ChNogKhr4oGPQInEURdP/oQdkWRL+5UbtJ4SlT8ch+ND3b9eqMibv Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org This patch moves cpufreq driver of BLACKFIN architecture to drivers/cpufreq. Cc: Mike Frysinger Cc: uclinux-dist-devel@blackfin.uclinux.org Signed-off-by: Viresh Kumar --- arch/blackfin/mach-common/Makefile | 1 - drivers/cpufreq/Makefile | 1 + .../blackfin/mach-common/cpufreq.c => drivers/cpufreq/blackfin-cpufreq.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename arch/blackfin/mach-common/cpufreq.c => drivers/cpufreq/blackfin-cpufreq.c (100%) diff --git a/arch/blackfin/mach-common/cpufreq.c b/drivers/cpufreq/blackfin-cpufreq.c similarity index 100% rename from arch/blackfin/mach-common/cpufreq.c rename to drivers/cpufreq/blackfin-cpufreq.c diff --git a/arch/blackfin/mach-common/Makefile b/arch/blackfin/mach-common/Makefile index 75f0ba2..675466d 100644 --- a/arch/blackfin/mach-common/Makefile +++ b/arch/blackfin/mach-common/Makefile @@ -10,7 +10,6 @@ obj-$(CONFIG_PM) += pm.o ifneq ($(CONFIG_BF60x),y) obj-$(CONFIG_PM) += dpmc_modes.o endif -obj-$(CONFIG_CPU_FREQ) += cpufreq.o obj-$(CONFIG_CPU_VOLTAGE) += dpmc.o obj-$(CONFIG_SMP) += smp.o obj-$(CONFIG_BFIN_KERNEL_CLOCK) += clocks-init.o diff --git a/drivers/cpufreq/Makefile b/drivers/cpufreq/Makefile index 7573c22..2d86377 100644 --- a/drivers/cpufreq/Makefile +++ b/drivers/cpufreq/Makefile @@ -79,3 +79,4 @@ obj-$(CONFIG_CPU_FREQ_MAPLE) += maple-cpufreq.o ################################################################################## # Other platform drivers obj-$(CONFIG_AVR32_AT32AP_CPUFREQ) += at32ap-cpufreq.o +obj-$(CONFIG_BLACKFIN) += blackfin-cpufreq.o