Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752357AbcJHUVR (ORCPT ); Sat, 8 Oct 2016 16:21:17 -0400 Received: from mail-qk0-f179.google.com ([209.85.220.179]:32909 "EHLO mail-qk0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751722AbcJHUVQ (ORCPT ); Sat, 8 Oct 2016 16:21:16 -0400 Subject: Re: [PATCH v2] pwm: add COMPILE_TEST and default y for brcm-iproc-pwm To: Scott Branden , Thierry Reding References: <1475948189-6402-1-git-send-email-scott.branden@broadcom.com> Cc: linux-pwm@vger.kernel.org, linux-kernel@vger.kernel.org, BCM Kernel Feedback From: Ray Jui Message-ID: <377829f9-05b3-6407-477c-52c23f623368@broadcom.com> Date: Sat, 8 Oct 2016 13:20:13 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <1475948189-6402-1-git-send-email-scott.branden@broadcom.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 927 Lines: 32 Hi Scott, On 10/8/2016 10:36 AM, Scott Branden wrote: > Enable COMPILE_TEST for broader compile coverage. > Default y for IPROC PWM driver for IPROC SoCs. > This allows you to turn it on simply by selecting CONFIG_PWM. > > Signed-off-by: Scott Branden > --- > drivers/pwm/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig > index 80a566a..68cd13d 100644 > --- a/drivers/pwm/Kconfig > +++ b/drivers/pwm/Kconfig > @@ -76,7 +76,8 @@ config PWM_ATMEL_TCB > > config PWM_BCM_IPROC > tristate "iProc PWM support" > - depends on ARCH_BCM_IPROC > + depends on ARCH_BCM_IPROC || COMPILE_TEST Would be nice to also add a dependency on COMMON_CLK here. > + default ARCH_BCM_IPROC > help > Generic PWM framework driver for Broadcom iProc PWM block. This > block is used in Broadcom iProc SoC's. Thanks, Ray