public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Boris Brezillon <boris.brezillon@free-electrons.com>,
	"Jean-Christophe Plagniol-Villard" <plagnioj@jcrosoft.com>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	"Samuel Ortiz" <sameo@linux.intel.com>,
	Lee Jones <lee.jones@linaro.org>,
	"Wim Van Sebroeck" <wim@iguana.be>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-watchdog@vger.kernel.org>
Subject: Re: [PATCH 4/8] ARM: at91: time: move the system timer driver to drivers/clocksource
Date: Mon, 5 Jan 2015 15:30:38 +0100	[thread overview]
Message-ID: <54AAA00E.6020709@atmel.com> (raw)
In-Reply-To: <1420459605-24561-5-git-send-email-alexandre.belloni@free-electrons.com>

Le 05/01/2015 13:06, Alexandre Belloni a écrit :
> Import at91rm9200_time.c from mach-at91 as timer-atmel-st.c. Further cleanup is
> required to get rid of the mach-at91 headers.
> 
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
>  arch/arm/mach-at91/Makefile                                           | 2 +-
>  drivers/clocksource/Kconfig                                           | 4 ++++
>  drivers/clocksource/Makefile                                          | 1 +
>  .../at91rm9200_time.c => drivers/clocksource/timer-atmel-st.c         | 0
>  4 files changed, 6 insertions(+), 1 deletion(-)
>  rename arch/arm/mach-at91/at91rm9200_time.c => drivers/clocksource/timer-atmel-st.c (100%)
> 
> diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile
> index 7b6424d40764..5d1ee3a6f115 100644
> --- a/arch/arm/mach-at91/Makefile
> +++ b/arch/arm/mach-at91/Makefile
> @@ -7,7 +7,7 @@ obj-y		:= setup.o sysirq_mask.o
>  obj-$(CONFIG_SOC_AT91SAM9)	+= sam9_smc.o
>  
>  # CPU-specific support
> -obj-$(CONFIG_SOC_AT91RM9200)	+= at91rm9200.o at91rm9200_time.o
> +obj-$(CONFIG_SOC_AT91RM9200)	+= at91rm9200.o
>  obj-$(CONFIG_SOC_AT91SAM9260)	+= at91sam9260.o
>  obj-$(CONFIG_SOC_AT91SAM9261)	+= at91sam9261.o
>  obj-$(CONFIG_SOC_AT91SAM9263)	+= at91sam9263.o
> diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
> index fc01ec27d3c8..ebc6dd77136e 100644
> --- a/drivers/clocksource/Kconfig
> +++ b/drivers/clocksource/Kconfig
> @@ -128,6 +128,10 @@ config ATMEL_PIT
>  	select CLKSRC_OF if OF
>  	def_bool SOC_AT91SAM9 || SOC_SAMA5
>  
> +config ATMEL_ST
> +	select CLKSRC_OF if OF

You can remove the "if OF" statement.

> +	def_bool SOC_AT91RM9200
> +
>  config CLKSRC_METAG_GENERIC
>  	def_bool y if METAG
>  	help
> diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
> index 94d90b24b56b..b7380ded4e4c 100644
> --- a/drivers/clocksource/Makefile
> +++ b/drivers/clocksource/Makefile
> @@ -1,5 +1,6 @@
>  obj-$(CONFIG_CLKSRC_OF)	+= clksrc-of.o
>  obj-$(CONFIG_ATMEL_PIT)		+= timer-atmel-pit.o
> +obj-$(CONFIG_ATMEL_ST)		+= timer-atmel-st.o
>  obj-$(CONFIG_ATMEL_TCB_CLKSRC)	+= tcb_clksrc.o
>  obj-$(CONFIG_X86_PM_TIMER)	+= acpi_pm.o
>  obj-$(CONFIG_SCx200HR_TIMER)	+= scx200_hrt.o
> diff --git a/arch/arm/mach-at91/at91rm9200_time.c b/drivers/clocksource/timer-atmel-st.c
> similarity index 100%
> rename from arch/arm/mach-at91/at91rm9200_time.c
> rename to drivers/clocksource/timer-atmel-st.c
> 


-- 
Nicolas Ferre

  reply	other threads:[~2015-01-05 14:30 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-05 12:06 [PATCH 0/8] Atmel System Timer cleanups Alexandre Belloni
2015-01-05 12:06 ` [PATCH 1/8] ARM: at91/dt: declare atmel,at91rm9200-st as a syscon Alexandre Belloni
2015-01-05 12:06 ` [PATCH 2/8] mfd: Add atmel-st driver Alexandre Belloni
2015-01-05 14:28   ` Nicolas Ferre
2015-01-05 12:06 ` [PATCH 3/8] watchdog: at91rm9200: use the regmap from mfd Alexandre Belloni
2015-01-05 14:29   ` Nicolas Ferre
2015-01-05 12:06 ` [PATCH 4/8] ARM: at91: time: move the system timer driver to drivers/clocksource Alexandre Belloni
2015-01-05 14:30   ` Nicolas Ferre [this message]
2015-01-05 12:06 ` [PATCH 5/8] ARM: at91: move the restart function to the system timer driver Alexandre Belloni
2015-01-05 12:06 ` [PATCH 6/8] clocksource: atmel-st: properly initialize driver Alexandre Belloni
2015-01-05 12:06 ` [PATCH 7/8] clocksource: atmel-st: use syscon/regmap Alexandre Belloni
2015-01-05 14:30   ` Nicolas Ferre
2015-01-05 12:06 ` [PATCH 8/8] ARM: at91: remove useless include Alexandre Belloni
2015-01-08  8:16 ` [PATCH 0/8] Atmel System Timer cleanups Boris Brezillon

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=54AAA00E.6020709@atmel.com \
    --to=nicolas.ferre@atmel.com \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=boris.brezillon@free-electrons.com \
    --cc=daniel.lezcano@linaro.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=plagnioj@jcrosoft.com \
    --cc=sameo@linux.intel.com \
    --cc=tglx@linutronix.de \
    --cc=wim@iguana.be \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox