public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: ladis@linux-mips.org (Ladislav Michl)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/7] omap: dmtimer: Move driver out of plat-omap
Date: Wed, 8 Nov 2017 13:51:51 +0100	[thread overview]
Message-ID: <20171108125151.li2mgxuxisan5f6c@lenoch> (raw)
In-Reply-To: <1510144108-29563-1-git-send-email-j-keerthy@ti.com>

On Wed, Nov 08, 2017 at 05:58:21PM +0530, Keerthy wrote:
> The series moves dmtimer out of plat-omap to drivers/clocksource.
> The series also does a bunch of changes to pwm-omap-dmtimer code
> to adapt to the driver migration and clean up plat specific
> pdata-quirks and use the dmtimer platform data.
> 
> Boot tested on DRA7-EVM and AM437X-GP-EVM.

Boot tested on IGEPv2 with DM3730 and OMAP3530
Tested-by: Ladislav Michl <ladis@linux-mips.org>

> More testing would be of great help. 
> 
> No code changes in this v2 version. Only enhanced patch
> statistics for renames.

Btw, what are these pathes against. Here's how it ends against 4.14-rc8:
Applying: clocksource: dmtimer: Remove all the exports
Applying: arm: omap: Move dmtimer.h out of plat-omap
Applying: arm: OMAP: Move dmtimer driver out of plat-omap to drivers under clocksource
error: patch failed: drivers/clocksource/Kconfig:46
error: drivers/clocksource/Kconfig: patch does not apply
Patch failed at 0003 arm: OMAP: Move dmtimer driver out of plat-omap to drivers under clocksource

Test above was using your first serie which I manually fixed to apply.
Given the fact there is no code change, I will not do this again :-)
(and I'm happy someone is cleaning dm timer code, thank you)

	ladis

> Keerthy (7):
>   clocksource: dmtimer: Remove all the exports
>   arm: omap: Move dmtimer.h out of plat-omap
>   arm: OMAP: Move dmtimer driver out of plat-omap to drivers under
>     clocksource
>   dmtimer: Add timer ops to the platform data structure
>   clocksource: dmtimer: Populate the timer ops to the pdata
>   pwm: pwm-omap-dmtimer: Adapt driver to utilize dmtimer pdata ops
>   arm: omap: pdata-quirks: Remove unused timer pdata
> 
>  arch/arm/mach-omap1/pm.c                           |  2 +-
>  arch/arm/mach-omap1/timer.c                        |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_2420_data.c         |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_2430_data.c         |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_44xx_data.c         |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_54xx_data.c         |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_7xx_data.c          |  2 +-
>  arch/arm/mach-omap2/omap_hwmod_81xx_data.c         |  2 +-
>  arch/arm/mach-omap2/pdata-quirks.c                 | 32 -------------
>  arch/arm/mach-omap2/timer.c                        |  2 +-
>  arch/arm/plat-omap/Kconfig                         |  6 ---
>  arch/arm/plat-omap/Makefile                        |  1 -
>  drivers/clocksource/Kconfig                        |  6 +++
>  drivers/clocksource/Makefile                       |  1 +
>  .../plat-omap => drivers/clocksource}/dmtimer.c    | 54 +++++++++++-----------
>  drivers/pwm/pwm-omap-dmtimer.c                     | 39 +++++++++-------
>  .../include/plat => include/clocksource}/dmtimer.h |  0
>  include/linux/platform_data/dmtimer-omap.h         | 38 +++++++++++++++
>  20 files changed, 104 insertions(+), 95 deletions(-)
>  rename {arch/arm/plat-omap => drivers/clocksource}/dmtimer.c (95%)
>  rename {arch/arm/plat-omap/include/plat => include/clocksource}/dmtimer.h (100%)
> 
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2017-11-08 12:51 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-08 12:28 [PATCH v2 0/7] omap: dmtimer: Move driver out of plat-omap Keerthy
2017-11-08 12:28 ` [PATCH v2 1/7] clocksource: dmtimer: Remove all the exports Keerthy
2017-11-09 16:13   ` Sebastian Reichel
2017-11-08 12:28 ` [PATCH v2 2/7] arm: omap: Move dmtimer.h out of plat-omap Keerthy
2017-11-08 16:42   ` Tony Lindgren
2017-11-09  4:25     ` Keerthy
2017-11-09  8:06       ` Keerthy
2017-11-09 14:52         ` Tony Lindgren
2017-11-09 16:16   ` Sebastian Reichel
2017-11-08 12:28 ` [PATCH v2 3/7] arm: OMAP: Move dmtimer driver out of plat-omap to drivers under clocksource Keerthy
2017-11-09 16:17   ` Sebastian Reichel
2017-11-08 12:28 ` [PATCH v2 4/7] dmtimer: Add timer ops to the platform data structure Keerthy
2017-11-09 16:27   ` Sebastian Reichel
2017-11-08 12:28 ` [PATCH v2 5/7] clocksource: dmtimer: Populate the timer ops to the pdata Keerthy
2017-11-09 16:28   ` Sebastian Reichel
2017-11-08 12:28 ` [PATCH v2 6/7] pwm: pwm-omap-dmtimer: Adapt driver to utilize dmtimer pdata ops Keerthy
2017-11-09 16:28   ` Sebastian Reichel
2017-11-09 21:15   ` Grygorii Strashko
2017-11-08 12:28 ` [PATCH v2 7/7] arm: omap: pdata-quirks: Remove unused timer pdata Keerthy
2017-11-09 16:29   ` Sebastian Reichel
2017-11-08 12:51 ` Ladislav Michl [this message]
2017-11-09  4:31   ` [PATCH v2 0/7] omap: dmtimer: Move driver out of plat-omap Keerthy
2017-11-09  4:41     ` Keerthy
2017-11-08 22:57 ` Tony Lindgren

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=20171108125151.li2mgxuxisan5f6c@lenoch \
    --to=ladis@linux-mips.org \
    --cc=linux-arm-kernel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox