All of lore.kernel.org
 help / color / mirror / Atom feed
From: jbrunet@baylibre.com (Jerome Brunet)
To: linus-amlogic@lists.infradead.org
Subject: [PATCH 2/3] arm: meson: select the clock controller for Meson8
Date: Sun, 04 Jun 2017 22:02:12 +0200	[thread overview]
Message-ID: <1496606532.3552.18.camel@baylibre.com> (raw)
In-Reply-To: <20170604183341.21417-3-martin.blumenstingl@googlemail.com>

On Sun, 2017-06-04 at 20:33 +0200, Martin Blumenstingl wrote:
> Select COMMON_CLK_MESON8B also for MACH_MESON8 since the Meson8b clock
> controller driver can also be used on Meson8 SoCs now that we have a
> separate compatible for it.
> 
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

Acked-by: Jerome Brunet <jbrunet@baylibre.com>

> ---
> ?arch/arm/mach-meson/Kconfig | 1 +
> ?1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
> index b6e3acc63e14..ee30511849ca 100644
> --- a/arch/arm/mach-meson/Kconfig
> +++ b/arch/arm/mach-meson/Kconfig
> @@ -21,6 +21,7 @@ config MACH_MESON8
> ?	bool "Amlogic Meson8 SoCs support"
> ?	default ARCH_MESON
> ?	select MESON6_TIMER
> +	select COMMON_CLK_MESON8B
> ?
> ?config MACH_MESON8B
> ?	bool "Amlogic Meson8b SoCs support"

WARNING: multiple messages have this Message-ID (diff)
From: Jerome Brunet <jbrunet@baylibre.com>
To: Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
	narmstrong@baylibre.com, linux-amlogic@lists.infradead.org,
	linux-clk@vger.kernel.org
Cc: mturquette@baylibre.com, sboyd@codeaurora.org,
	robh+dt@kernel.org, mark.rutland@arm.com, carlo@caione.org,
	khilman@baylibre.com, linux@armlinux.org.uk,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/3] arm: meson: select the clock controller for Meson8
Date: Sun, 04 Jun 2017 22:02:12 +0200	[thread overview]
Message-ID: <1496606532.3552.18.camel@baylibre.com> (raw)
In-Reply-To: <20170604183341.21417-3-martin.blumenstingl@googlemail.com>

On Sun, 2017-06-04 at 20:33 +0200, Martin Blumenstingl wrote:
> Select COMMON_CLK_MESON8B also for MACH_MESON8 since the Meson8b clock
> controller driver can also be used on Meson8 SoCs now that we have a
> separate compatible for it.
> 
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

Acked-by: Jerome Brunet <jbrunet@baylibre.com>

> ---
>  arch/arm/mach-meson/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
> index b6e3acc63e14..ee30511849ca 100644
> --- a/arch/arm/mach-meson/Kconfig
> +++ b/arch/arm/mach-meson/Kconfig
> @@ -21,6 +21,7 @@ config MACH_MESON8
>  	bool "Amlogic Meson8 SoCs support"
>  	default ARCH_MESON
>  	select MESON6_TIMER
> +	select COMMON_CLK_MESON8B
>  
>  config MACH_MESON8B
>  	bool "Amlogic Meson8b SoCs support"

WARNING: multiple messages have this Message-ID (diff)
From: jbrunet@baylibre.com (Jerome Brunet)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] arm: meson: select the clock controller for Meson8
Date: Sun, 04 Jun 2017 22:02:12 +0200	[thread overview]
Message-ID: <1496606532.3552.18.camel@baylibre.com> (raw)
In-Reply-To: <20170604183341.21417-3-martin.blumenstingl@googlemail.com>

On Sun, 2017-06-04 at 20:33 +0200, Martin Blumenstingl wrote:
> Select COMMON_CLK_MESON8B also for MACH_MESON8 since the Meson8b clock
> controller driver can also be used on Meson8 SoCs now that we have a
> separate compatible for it.
> 
> Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>

Acked-by: Jerome Brunet <jbrunet@baylibre.com>

> ---
> ?arch/arm/mach-meson/Kconfig | 1 +
> ?1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
> index b6e3acc63e14..ee30511849ca 100644
> --- a/arch/arm/mach-meson/Kconfig
> +++ b/arch/arm/mach-meson/Kconfig
> @@ -21,6 +21,7 @@ config MACH_MESON8
> ?	bool "Amlogic Meson8 SoCs support"
> ?	default ARCH_MESON
> ?	select MESON6_TIMER
> +	select COMMON_CLK_MESON8B
> ?
> ?config MACH_MESON8B
> ?	bool "Amlogic Meson8b SoCs support"

  reply	other threads:[~2017-06-04 20:02 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-04 18:33 [PATCH 0/3] use the Meson8b clock controller driver on Meson8 SoCs Martin Blumenstingl
2017-06-04 18:33 ` Martin Blumenstingl
2017-06-04 18:33 ` Martin Blumenstingl
2017-06-04 18:33 ` [PATCH 1/3] clk: meson: meson8b: add compatibles for Meson8 and Meson8m2 Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 19:58   ` Jerome Brunet
2017-06-04 19:58     ` Jerome Brunet
2017-06-04 19:58     ` Jerome Brunet
2017-06-04 19:58     ` Jerome Brunet
2017-06-04 22:27     ` Martin Blumenstingl
2017-06-04 22:27       ` Martin Blumenstingl
2017-06-04 22:27       ` Martin Blumenstingl
2017-06-05  8:23       ` Jerome Brunet
2017-06-05  8:23         ` Jerome Brunet
2017-06-05  8:23         ` Jerome Brunet
2017-06-08 22:44         ` Rob Herring
2017-06-08 22:44           ` Rob Herring
2017-06-08 22:44           ` Rob Herring
2017-06-09 18:13     ` Kevin Hilman
2017-06-09 18:13       ` Kevin Hilman
2017-06-09 18:13       ` Kevin Hilman
2017-06-09 18:13       ` Kevin Hilman
2017-06-12  7:40       ` Jerome Brunet
2017-06-12  7:40         ` Jerome Brunet
2017-06-12  7:40         ` Jerome Brunet
2017-06-12  7:40         ` Jerome Brunet
2017-06-04 18:33 ` [PATCH 2/3] arm: meson: select the clock controller for Meson8 Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 20:02   ` Jerome Brunet [this message]
2017-06-04 20:02     ` Jerome Brunet
2017-06-04 20:02     ` Jerome Brunet
2017-06-09 18:21     ` Kevin Hilman
2017-06-09 18:21       ` Kevin Hilman
2017-06-09 18:21       ` Kevin Hilman
2017-06-04 18:33 ` [PATCH 3/3] ARM: dts: meson8: add and use the real clock controller Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 18:33   ` Martin Blumenstingl
2017-06-04 20:20   ` Jerome Brunet
2017-06-04 20:20     ` Jerome Brunet
2017-06-04 20:20     ` Jerome Brunet
2017-06-04 22:13     ` Martin Blumenstingl
2017-06-04 22:13       ` Martin Blumenstingl
2017-06-04 22:13       ` Martin Blumenstingl
2017-06-07 11:55       ` Neil Armstrong
2017-06-07 11:55         ` Neil Armstrong
2017-06-07 11:55         ` Neil Armstrong
2017-06-07 11:55         ` Neil Armstrong
2017-06-09 18:22     ` Kevin Hilman
2017-06-09 18:22       ` Kevin Hilman
2017-06-09 18:22       ` Kevin Hilman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1496606532.3552.18.camel@baylibre.com \
    --to=jbrunet@baylibre.com \
    --cc=linus-amlogic@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.