linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: adapt defconfigs to pwm driver split
       [not found] <20190107195352.3149-5-u.kleine-koenig@pengutronix.de>
@ 2019-01-10 20:19 ` Uwe Kleine-König
  2019-01-10 20:19   ` [PATCH 1/2] ARM: imx_v6_v7_defconfig: continue compiling the pwm driver Uwe Kleine-König
                     ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2019-01-10 20:19 UTC (permalink / raw)
  To: Thierry Reding, Shawn Guo; +Cc: linux-pwm, linux-arm-kernel, kernel

Hello,

to continue compiling the (now) two pwm-imx drivers as part of the
imx defconfigs we should update them to use the new names.

I think the easiest handling would be to let them go via the pwm tree
with Shawn's Ack to get the update near to the actual split into
the mainline.

Best regards
Uwe

Uwe Kleine-König (2):
  ARM: imx_v6_v7_defconfig: continue compiling the pwm driver
  ARM: imx_v4_v5_defconfig: enable PWM driver

 arch/arm/configs/imx_v4_v5_defconfig | 3 +++
 arch/arm/configs/imx_v6_v7_defconfig | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: imx_v6_v7_defconfig: continue compiling the pwm driver
  2019-01-10 20:19 ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Uwe Kleine-König
@ 2019-01-10 20:19   ` Uwe Kleine-König
  2019-01-10 20:19   ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: enable PWM driver Uwe Kleine-König
  2019-03-22  1:57   ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2019-01-10 20:19 UTC (permalink / raw)
  To: Thierry Reding, Shawn Guo; +Cc: linux-pwm, linux-arm-kernel, kernel

After the pwm-imx driver was split into two drivers and the Kconfig symbol
changed accordingly, use the new name to continue being able to use the
PWM hardware.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 arch/arm/configs/imx_v6_v7_defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/configs/imx_v6_v7_defconfig b/arch/arm/configs/imx_v6_v7_defconfig
index 5586a5074a96..50fb01d70b10 100644
--- a/arch/arm/configs/imx_v6_v7_defconfig
+++ b/arch/arm/configs/imx_v6_v7_defconfig
@@ -398,7 +398,7 @@ CONFIG_MAG3110=y
 CONFIG_MPL3115=y
 CONFIG_PWM=y
 CONFIG_PWM_FSL_FTM=y
-CONFIG_PWM_IMX=y
+CONFIG_PWM_IMX27=y
 CONFIG_NVMEM_IMX_OCOTP=y
 CONFIG_NVMEM_VF610_OCOTP=y
 CONFIG_TEE=y
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ARM: imx_v4_v5_defconfig: enable PWM driver
  2019-01-10 20:19 ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Uwe Kleine-König
  2019-01-10 20:19   ` [PATCH 1/2] ARM: imx_v6_v7_defconfig: continue compiling the pwm driver Uwe Kleine-König
@ 2019-01-10 20:19   ` Uwe Kleine-König
  2019-03-22  1:57   ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2019-01-10 20:19 UTC (permalink / raw)
  To: Thierry Reding, Shawn Guo; +Cc: linux-pwm, linux-arm-kernel, kernel

While there is no mainline board that makes use of the PWM still enable the
driver for it to increase compile test coverage.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 arch/arm/configs/imx_v4_v5_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/imx_v4_v5_defconfig b/arch/arm/configs/imx_v4_v5_defconfig
index 8661dd9b064a..b37f8e675e40 100644
--- a/arch/arm/configs/imx_v4_v5_defconfig
+++ b/arch/arm/configs/imx_v4_v5_defconfig
@@ -170,6 +170,9 @@ CONFIG_IMX_SDMA=y
 # CONFIG_IOMMU_SUPPORT is not set
 CONFIG_IIO=y
 CONFIG_FSL_MX25_ADC=y
+CONFIG_PWM=y
+CONFIG_PWM_IMX1=y
+CONFIG_PWM_IMX27=y
 CONFIG_EXT4_FS=y
 # CONFIG_DNOTIFY is not set
 CONFIG_VFAT_FS=y
-- 
2.20.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] ARM: adapt defconfigs to pwm driver split
  2019-01-10 20:19 ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Uwe Kleine-König
  2019-01-10 20:19   ` [PATCH 1/2] ARM: imx_v6_v7_defconfig: continue compiling the pwm driver Uwe Kleine-König
  2019-01-10 20:19   ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: enable PWM driver Uwe Kleine-König
@ 2019-03-22  1:57   ` Shawn Guo
  2 siblings, 0 replies; 4+ messages in thread
From: Shawn Guo @ 2019-03-22  1:57 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: linux-pwm, Thierry Reding, linux-arm-kernel, kernel

On Thu, Jan 10, 2019 at 09:19:32PM +0100, Uwe Kleine-König wrote:
> Hello,
> 
> to continue compiling the (now) two pwm-imx drivers as part of the
> imx defconfigs we should update them to use the new names.
> 
> I think the easiest handling would be to let them go via the pwm tree
> with Shawn's Ack to get the update near to the actual split into
> the mainline.
> 
> Best regards
> Uwe
> 
> Uwe Kleine-König (2):
>   ARM: imx_v6_v7_defconfig: continue compiling the pwm driver
>   ARM: imx_v4_v5_defconfig: enable PWM driver

Applied for 5.1-rc, thanks.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-03-22  1:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20190107195352.3149-5-u.kleine-koenig@pengutronix.de>
2019-01-10 20:19 ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Uwe Kleine-König
2019-01-10 20:19   ` [PATCH 1/2] ARM: imx_v6_v7_defconfig: continue compiling the pwm driver Uwe Kleine-König
2019-01-10 20:19   ` [PATCH 2/2] ARM: imx_v4_v5_defconfig: enable PWM driver Uwe Kleine-König
2019-03-22  1:57   ` [PATCH 0/2] ARM: adapt defconfigs to pwm driver split Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).