From mboxrd@z Thu Jan 1 00:00:00 1970 From: jbrunet@baylibre.com (Jerome Brunet) Date: Mon, 15 May 2017 17:54:50 +0200 Subject: [PATCH v2 1/2] clk: meson-gxbb: un-export the CPU clock In-Reply-To: <20170504181920.21880-2-martin.blumenstingl@googlemail.com> References: <20170401125519.7339-1-martin.blumenstingl@googlemail.com> <20170504181920.21880-1-martin.blumenstingl@googlemail.com> <20170504181920.21880-2-martin.blumenstingl@googlemail.com> Message-ID: <1494863690.13948.0.camel@baylibre.com> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org On Thu, 2017-05-04 at 20:19 +0200, Martin Blumenstingl wrote: > The CPU clock defined in the Meson GX clock driver is actually a > left-over from the Meson8b clock controller. Un-export the clock so we > can remove it from the driver. > > Signed-off-by: Martin Blumenstingl > --- > ?drivers/clk/meson/gxbb.h??????????????| 2 +- > ?include/dt-bindings/clock/gxbb-clkc.h | 1 - > ?2 files changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/clk/meson/gxbb.h b/drivers/clk/meson/gxbb.h > index 3e5f375af7b6..c15bbce8c585 100644 > --- a/drivers/clk/meson/gxbb.h > +++ b/drivers/clk/meson/gxbb.h > @@ -171,7 +171,7 @@ > ? * to be exposed to client nodes in DT: include/dt-bindings/clock/gxbb-clkc.h > ? */ > ?#define CLKID_SYS_PLL ??0 > -/* CLKID_CPUCLK */ > +#define CLKID_CPUCLK ??1 > ?/* CLKID_HDMI_PLL */ > ?#define CLKID_FIXED_PLL ??3 > ?/* CLKID_FCLK_DIV2 */ > diff --git a/include/dt-bindings/clock/gxbb-clkc.h b/include/dt- > bindings/clock/gxbb-clkc.h > index 3190e30b9398..46ff81fbc02e 100644 > --- a/include/dt-bindings/clock/gxbb-clkc.h > +++ b/include/dt-bindings/clock/gxbb-clkc.h > @@ -5,7 +5,6 @@ > ?#ifndef __GXBB_CLKC_H > ?#define __GXBB_CLKC_H > ? > -#define CLKID_CPUCLK 1 > ?#define CLKID_HDMI_PLL 2 > ?#define CLKID_FCLK_DIV2 4 > ?#define CLKID_FCLK_DIV3 5 Applied. Thanks Jerome