Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758982AbcK3UzB (ORCPT ); Wed, 30 Nov 2016 15:55:01 -0500 Received: from mail-yw0-f193.google.com ([209.85.161.193]:35120 "EHLO mail-yw0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755187AbcK3Uxf (ORCPT ); Wed, 30 Nov 2016 15:53:35 -0500 Date: Wed, 30 Nov 2016 14:53:33 -0600 From: Rob Herring To: gabriel.fernandez@st.com Cc: Mark Rutland , Russell King , Maxime Coquelin , Alexandre Torgue , Michael Turquette , Stephen Boyd , Nicolas Pitre , Arnd Bergmann , daniel.thompson@linaro.org, andrea.merello@gmail.com, radoslaw.pietrzyk@gmail.com, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, kernel@stlinux.com, ludovic.barre@st.com, olivier.bideau@st.com, amelie.delaunay@st.com Subject: Re: [PATCH v2 4/9] clk: stm32f4: Add lcd-tft clock Message-ID: <20161130205333.tiukcjbspuqmedgw@rob-hp-laptop> References: <1479998749-20358-1-git-send-email-gabriel.fernandez@st.com> <1479998749-20358-5-git-send-email-gabriel.fernandez@st.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1479998749-20358-5-git-send-email-gabriel.fernandez@st.com> User-Agent: Mutt/1.6.2-neo (2016-08-21) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1210 Lines: 34 On Thu, Nov 24, 2016 at 03:45:44PM +0100, gabriel.fernandez@st.com wrote: > From: Gabriel Fernandez > > This patch introduces lcd-tft clock for stm32f4 soc. > > Signed-off-by: Gabriel Fernandez > --- > .../devicetree/bindings/clock/st,stm32-rcc.txt | 1 + > drivers/clk/clk-stm32f4.c | 118 +++++++++++++++++++++ > include/dt-bindings/clock/stm32f4-clock.h | 3 +- > 3 files changed, 121 insertions(+), 1 deletion(-) > diff --git a/include/dt-bindings/clock/stm32f4-clock.h b/include/dt-bindings/clock/stm32f4-clock.h > index 56b8e10..1be4a3a 100644 > --- a/include/dt-bindings/clock/stm32f4-clock.h > +++ b/include/dt-bindings/clock/stm32f4-clock.h > @@ -27,7 +27,8 @@ > #define CLK_RTC 5 > #define PLL_VCO_I2S 6 > #define PLL_VCO_SAI 7 > +#define CLK_LCD 8 > > -#define END_PRIMARY_CLK 8 > +#define END_PRIMARY_CLK 9 Do you really need this? Having this change could cause compatibility problems between dtb and kernel versions. Please restructure the patch series and put all of the binding changes including this header into a single patch. Incrementally add s/w features, not h/w. Rob