Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756677AbcLPSSk (ORCPT ); Fri, 16 Dec 2016 13:18:40 -0500 Received: from mail-io0-f172.google.com ([209.85.223.172]:36118 "EHLO mail-io0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754489AbcLPSSc (ORCPT ); Fri, 16 Dec 2016 13:18:32 -0500 Date: Fri, 16 Dec 2016 13:18:30 -0500 (EST) From: Nicolas Pitre To: Arnd Bergmann cc: "David S. Miller" , Grygorii Strashko , Thomas Gleixner , John Stultz , =?ISO-8859-15?Q?Uwe_Kleine-K=F6nig?= , WingMan Kwok , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH net 1/3] cpsw/netcp: cpts depends on posix_timers In-Reply-To: <20161216092017.2560717-1-arnd@arndb.de> Message-ID: References: <20161216092017.2560717-1-arnd@arndb.de> User-Agent: Alpine 2.20 (LFD 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1451 Lines: 38 On Fri, 16 Dec 2016, Arnd Bergmann wrote: > With posix timers having become optional, we get a build error with > the cpts time sync option of the CPSW driver: > > drivers/net/ethernet/ti/cpts.c: In function 'cpts_find_ts': > drivers/net/ethernet/ti/cpts.c:291:23: error: implicit declaration of function 'ptp_classify_raw';did you mean 'ptp_classifier_init'? [-Werror=implicit-function-declaration] > > It really makes no sense to build this driver if we can't use PTP, > so it's better to go back to 'select PTP_1588_CLOCK' but instead > add a dependency on POSIX_TIMERS. Why not depend on PTP_1588_CLOCK directly instead? > Fixes: baa73d9e478f ("posix-timers: Make them configurable") > Signed-off-by: Arnd Bergmann > --- > drivers/net/ethernet/ti/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/ethernet/ti/Kconfig b/drivers/net/ethernet/ti/Kconfig > index 296c8efd0038..366e29ff8605 100644 > --- a/drivers/net/ethernet/ti/Kconfig > +++ b/drivers/net/ethernet/ti/Kconfig > @@ -76,7 +76,8 @@ config TI_CPSW > config TI_CPTS > tristate "TI Common Platform Time Sync (CPTS) Support" > depends on TI_CPSW || TI_KEYSTONE_NETCP > - imply PTP_1588_CLOCK > + depends on POSIX_TIMERS > + select PTP_1588_CLOCK > ---help--- > This driver supports the Common Platform Time Sync unit of > the CPSW Ethernet Switch and Keystone 2 1g/10g Switch Subsystem. > -- > 2.9.0 > >