Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756889AbbDVDOz (ORCPT ); Tue, 21 Apr 2015 23:14:55 -0400 Received: from mail-la0-f49.google.com ([209.85.215.49]:35559 "EHLO mail-la0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756858AbbDVDOw (ORCPT ); Tue, 21 Apr 2015 23:14:52 -0400 MIME-Version: 1.0 In-Reply-To: <1429554517.14597.38.camel@x220> References: <1429522047-16675-1-git-send-email-pi-cheng.chen@linaro.org> <1429522047-16675-2-git-send-email-pi-cheng.chen@linaro.org> <1429554517.14597.38.camel@x220> Date: Wed, 22 Apr 2015 11:14:50 +0800 Message-ID: Subject: Re: [PATCH 1/2] cpufreq: mediatek: Add MT8173 cpufreq driver From: Pi-Cheng Chen To: Paul Bolle Cc: Viresh Kumar , Mike Turquette , Matthias Brugger , "Joe.C" , Eddie Huang , Howard Chen , Chen Fan , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , Linux Kernel Mailing List , "linux-pm@vger.kernel.org" , Linaro Kernel Mailman List , linux-mediatek@lists.infradead.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1654 Lines: 59 On Tue, Apr 21, 2015 at 2:28 AM, Paul Bolle wrote: > On Mon, 2015-04-20 at 17:27 +0800, pi-cheng.chen wrote: >> --- a/drivers/cpufreq/Kconfig.arm >> +++ b/drivers/cpufreq/Kconfig.arm > >> +config ARM_MT8173_CPUFREQ >> + bool "Mediatek MT8173 CPUFreq support" >> + depends on ARCH_MEDIATEK && REGULATOR >> + help >> + This adds the CPUFreq driver support for Mediatek MT8173 SoC. > >> --- a/drivers/cpufreq/Makefile >> +++ b/drivers/cpufreq/Makefile > >> +obj-$(CONFIG_ARM_MT8173_CPUFREQ) += mt8173-cpufreq.o > > ARM_MT8173_CPUFREQ is a bool symbol, so mt8173-cpufreq.o will never be > part of a module. > > (If that's incorrect you can stop reading here.) > >> --- /dev/null >> +++ b/drivers/cpufreq/mt8173-cpufreq.c > >> +#include > > I guess this include is not needed. And, for what it's worth, > make ARCH=arm CROSS_COMPILE=arm-linux-gnu- drivers/cpufreq/mt8173-cpufreq.o > > compiles silently even if it's dropped. > >> +module_init(mt8173_cpufreq_driver_init); > > According to include/linux/init.h, for built-in only code, this is > equivalent to device_initcall([...]). And two runs of > make ARCH=arm CROSS_COMPILE=arm-linux-gnu- drivers/cpufreq/mt8173-cpufreq.i > > confirm that. Hi Paul, Thanks for your reviewing. The is not needed here. I'll remove it. Best Regards, Pi-Cheng > > Thanks, > > > Paul Bolle > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/