linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] pwm: imx-tpm: Remove unused includes
@ 2020-02-21  7:45 Anson Huang
  2020-02-21  7:45 ` [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h Anson Huang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Anson Huang @ 2020-02-21  7:45 UTC (permalink / raw)
  To: thierry.reding, u.kleine-koenig, shawnguo, s.hauer, kernel,
	festevam, linux-pwm, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

There is nothing in use from log2.h/of_address.h, remove them.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/pwm/pwm-imx-tpm.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/pwm/pwm-imx-tpm.c b/drivers/pwm/pwm-imx-tpm.c
index 9145f61..5f3d7f7 100644
--- a/drivers/pwm/pwm-imx-tpm.c
+++ b/drivers/pwm/pwm-imx-tpm.c
@@ -18,10 +18,8 @@
 #include <linux/clk.h>
 #include <linux/err.h>
 #include <linux/io.h>
-#include <linux/log2.h>
 #include <linux/module.h>
 #include <linux/of.h>
-#include <linux/of_address.h>
 #include <linux/platform_device.h>
 #include <linux/pwm.h>
 #include <linux/slab.h>
-- 
2.7.4


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

* [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h
  2020-02-21  7:45 [PATCH 1/3] pwm: imx-tpm: Remove unused includes Anson Huang
@ 2020-02-21  7:45 ` Anson Huang
  2020-02-26 16:13   ` Uwe Kleine-König
  2020-02-21  7:45 ` [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h Anson Huang
  2020-02-26 16:13 ` [PATCH 1/3] pwm: imx-tpm: Remove unused includes Uwe Kleine-König
  2 siblings, 1 reply; 6+ messages in thread
From: Anson Huang @ 2020-02-21  7:45 UTC (permalink / raw)
  To: thierry.reding, u.kleine-koenig, shawnguo, s.hauer, kernel,
	festevam, linux-pwm, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

There is nothing in use from of_device.h, remove it.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/pwm/pwm-imx27.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
index 35a7ac42..704c38e 100644
--- a/drivers/pwm/pwm-imx27.c
+++ b/drivers/pwm/pwm-imx27.c
@@ -18,7 +18,6 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/of.h>
-#include <linux/of_device.h>
 #include <linux/platform_device.h>
 #include <linux/pwm.h>
 #include <linux/slab.h>
-- 
2.7.4


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

* [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h
  2020-02-21  7:45 [PATCH 1/3] pwm: imx-tpm: Remove unused includes Anson Huang
  2020-02-21  7:45 ` [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h Anson Huang
@ 2020-02-21  7:45 ` Anson Huang
  2020-02-26 16:14   ` Uwe Kleine-König
  2020-02-26 16:13 ` [PATCH 1/3] pwm: imx-tpm: Remove unused includes Uwe Kleine-König
  2 siblings, 1 reply; 6+ messages in thread
From: Anson Huang @ 2020-02-21  7:45 UTC (permalink / raw)
  To: thierry.reding, u.kleine-koenig, shawnguo, s.hauer, kernel,
	festevam, linux-pwm, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

There is nothing in use from of_address.h, remove it.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/pwm/pwm-mxs.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pwm/pwm-mxs.c b/drivers/pwm/pwm-mxs.c
index f2e57fc..7ce6169 100644
--- a/drivers/pwm/pwm-mxs.c
+++ b/drivers/pwm/pwm-mxs.c
@@ -9,7 +9,6 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/of.h>
-#include <linux/of_address.h>
 #include <linux/platform_device.h>
 #include <linux/pwm.h>
 #include <linux/slab.h>
-- 
2.7.4


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

* Re: [PATCH 1/3] pwm: imx-tpm: Remove unused includes
  2020-02-21  7:45 [PATCH 1/3] pwm: imx-tpm: Remove unused includes Anson Huang
  2020-02-21  7:45 ` [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h Anson Huang
  2020-02-21  7:45 ` [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h Anson Huang
@ 2020-02-26 16:13 ` Uwe Kleine-König
  2 siblings, 0 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2020-02-26 16:13 UTC (permalink / raw)
  To: Anson Huang
  Cc: thierry.reding, shawnguo, s.hauer, kernel, festevam, linux-pwm,
	linux-arm-kernel, linux-kernel, Linux-imx

On Fri, Feb 21, 2020 at 03:45:27PM +0800, Anson Huang wrote:
> There is nothing in use from log2.h/of_address.h, remove them.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
>  drivers/pwm/pwm-imx-tpm.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/pwm/pwm-imx-tpm.c b/drivers/pwm/pwm-imx-tpm.c
> index 9145f61..5f3d7f7 100644
> --- a/drivers/pwm/pwm-imx-tpm.c
> +++ b/drivers/pwm/pwm-imx-tpm.c
> @@ -18,10 +18,8 @@
>  #include <linux/clk.h>
>  #include <linux/err.h>
>  #include <linux/io.h>
> -#include <linux/log2.h>
>  #include <linux/module.h>
>  #include <linux/of.h>
> -#include <linux/of_address.h>
>  #include <linux/platform_device.h>
>  #include <linux/pwm.h>
>  #include <linux/slab.h>

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

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

* Re: [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h
  2020-02-21  7:45 ` [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h Anson Huang
@ 2020-02-26 16:13   ` Uwe Kleine-König
  0 siblings, 0 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2020-02-26 16:13 UTC (permalink / raw)
  To: Anson Huang
  Cc: thierry.reding, shawnguo, s.hauer, kernel, festevam, linux-pwm,
	linux-arm-kernel, linux-kernel, Linux-imx

On Fri, Feb 21, 2020 at 03:45:28PM +0800, Anson Huang wrote:
> There is nothing in use from of_device.h, remove it.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
>  drivers/pwm/pwm-imx27.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
> index 35a7ac42..704c38e 100644
> --- a/drivers/pwm/pwm-imx27.c
> +++ b/drivers/pwm/pwm-imx27.c
> @@ -18,7 +18,6 @@
>  #include <linux/kernel.h>
>  #include <linux/module.h>
>  #include <linux/of.h>
> -#include <linux/of_device.h>
>  #include <linux/platform_device.h>
>  #include <linux/pwm.h>
>  #include <linux/slab.h>

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

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

* Re: [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h
  2020-02-21  7:45 ` [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h Anson Huang
@ 2020-02-26 16:14   ` Uwe Kleine-König
  0 siblings, 0 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2020-02-26 16:14 UTC (permalink / raw)
  To: Anson Huang
  Cc: thierry.reding, shawnguo, s.hauer, kernel, festevam, linux-pwm,
	linux-arm-kernel, linux-kernel, Linux-imx

Hello,

On Fri, Feb 21, 2020 at 03:45:29PM +0800, Anson Huang wrote:
> There is nothing in use from of_address.h, remove it.
> 
> Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> ---
>  drivers/pwm/pwm-mxs.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/pwm/pwm-mxs.c b/drivers/pwm/pwm-mxs.c
> index f2e57fc..7ce6169 100644
> --- a/drivers/pwm/pwm-mxs.c
> +++ b/drivers/pwm/pwm-mxs.c
> @@ -9,7 +9,6 @@
>  #include <linux/kernel.h>
>  #include <linux/module.h>
>  #include <linux/of.h>
> -#include <linux/of_address.h>
>  #include <linux/platform_device.h>
>  #include <linux/pwm.h>
>  #include <linux/slab.h>

Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

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

end of thread, other threads:[~2020-02-26 16:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-21  7:45 [PATCH 1/3] pwm: imx-tpm: Remove unused includes Anson Huang
2020-02-21  7:45 ` [PATCH 2/3] pwm: imx27: Remove unused include of of_device.h Anson Huang
2020-02-26 16:13   ` Uwe Kleine-König
2020-02-21  7:45 ` [PATCH 3/3] pwm: mxs: Remove unused include of of_address.h Anson Huang
2020-02-26 16:14   ` Uwe Kleine-König
2020-02-26 16:13 ` [PATCH 1/3] pwm: imx-tpm: Remove unused includes Uwe Kleine-König

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).