linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
@ 2020-04-17 10:11 YueHaibing
  2020-04-17 17:33 ` Florian Fainelli
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: YueHaibing @ 2020-04-17 10:11 UTC (permalink / raw)
  To: computersforpeace, kdasu.kdev, miquel.raynal, richard, vigneshr
  Cc: linux-mtd, bcm-kernel-feedback-list, linux-kernel, YueHaibing

Remove including <linux/version.h> that don't need it.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
 drivers/mtd/nand/raw/brcmnand/brcmnand.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.c b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
index e4e3ceeac38f..57076c3d98dc 100644
--- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c
+++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
@@ -4,7 +4,6 @@
  */
 
 #include <linux/clk.h>
-#include <linux/version.h>
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/delay.h>
-- 
2.17.1



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

* Re: [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
  2020-04-17 10:11 [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h> YueHaibing
@ 2020-04-17 17:33 ` Florian Fainelli
  2020-04-17 18:40 ` Kamal Dasu
  2020-05-10 20:06 ` Miquel Raynal
  2 siblings, 0 replies; 6+ messages in thread
From: Florian Fainelli @ 2020-04-17 17:33 UTC (permalink / raw)
  To: YueHaibing, computersforpeace, kdasu.kdev, miquel.raynal,
	richard, vigneshr
  Cc: linux-mtd, bcm-kernel-feedback-list, linux-kernel



On 4/17/2020 3:11 AM, YueHaibing wrote:
> Remove including <linux/version.h> that don't need it.
> 
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

Acked-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian

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

* Re: [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
  2020-04-17 10:11 [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h> YueHaibing
  2020-04-17 17:33 ` Florian Fainelli
@ 2020-04-17 18:40 ` Kamal Dasu
  2020-04-27 14:43   ` Miquel Raynal
  2020-05-10 20:06 ` Miquel Raynal
  2 siblings, 1 reply; 6+ messages in thread
From: Kamal Dasu @ 2020-04-17 18:40 UTC (permalink / raw)
  To: YueHaibing
  Cc: Brian Norris, Miquel Raynal, Richard Weinberger, R, Vignesh,
	MTD Maling List, bcm-kernel-feedback-list,
	Linux Kernel Mailing List

On Fri, Apr 17, 2020 at 6:12 AM YueHaibing <yuehaibing@huawei.com> wrote:
>
> Remove including <linux/version.h> that don't need it.
>
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>

Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>

> ---
>  drivers/mtd/nand/raw/brcmnand/brcmnand.c | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.c b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
> index e4e3ceeac38f..57076c3d98dc 100644
> --- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c
> +++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
> @@ -4,7 +4,6 @@
>   */
>
>  #include <linux/clk.h>
> -#include <linux/version.h>
>  #include <linux/module.h>
>  #include <linux/init.h>
>  #include <linux/delay.h>
> --
> 2.17.1
>
>
--

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

* Re: [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
  2020-04-17 18:40 ` Kamal Dasu
@ 2020-04-27 14:43   ` Miquel Raynal
  2020-04-27 15:38     ` Kamal Dasu
  0 siblings, 1 reply; 6+ messages in thread
From: Miquel Raynal @ 2020-04-27 14:43 UTC (permalink / raw)
  To: Kamal Dasu
  Cc: YueHaibing, Brian Norris, Richard Weinberger, R, Vignesh,
	MTD Maling List, bcm-kernel-feedback-list,
	Linux Kernel Mailing List

Hi Kamal,

Kamal Dasu <kdasu.kdev@gmail.com> wrote on Fri, 17 Apr 2020 14:40:51
-0400:

> On Fri, Apr 17, 2020 at 6:12 AM YueHaibing <yuehaibing@huawei.com> wrote:
> >
> > Remove including <linux/version.h> that don't need it.
> >
> > Signed-off-by: YueHaibing <yuehaibing@huawei.com>  
> 
> Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>

Can I suppose you meant "Reviewed-by" ?


Thanks,
Miquèl

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

* Re: [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
  2020-04-27 14:43   ` Miquel Raynal
@ 2020-04-27 15:38     ` Kamal Dasu
  0 siblings, 0 replies; 6+ messages in thread
From: Kamal Dasu @ 2020-04-27 15:38 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: YueHaibing, Brian Norris, Richard Weinberger, R, Vignesh,
	MTD Maling List, bcm-kernel-feedback-list,
	Linux Kernel Mailing List

On Mon, Apr 27, 2020 at 10:43 AM Miquel Raynal
<miquel.raynal@bootlin.com> wrote:
>
> Hi Kamal,
>
> Kamal Dasu <kdasu.kdev@gmail.com> wrote on Fri, 17 Apr 2020 14:40:51
> -0400:
>
> > On Fri, Apr 17, 2020 at 6:12 AM YueHaibing <yuehaibing@huawei.com> wrote:
> > >
> > > Remove including <linux/version.h> that don't need it.
> > >
> > > Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> >
> > Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>
>
> Can I suppose you meant "Reviewed-by" ?
>

Reviewed-by: Kamal Dasu <kdasu.kdev@gmail.com>

>
> Thanks,
> Miquèl

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

* Re: [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h>
  2020-04-17 10:11 [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h> YueHaibing
  2020-04-17 17:33 ` Florian Fainelli
  2020-04-17 18:40 ` Kamal Dasu
@ 2020-05-10 20:06 ` Miquel Raynal
  2 siblings, 0 replies; 6+ messages in thread
From: Miquel Raynal @ 2020-05-10 20:06 UTC (permalink / raw)
  To: YueHaibing, computersforpeace, kdasu.kdev, miquel.raynal,
	richard, vigneshr
  Cc: bcm-kernel-feedback-list, linux-mtd, linux-kernel

On Fri, 2020-04-17 at 10:11:29 UTC, YueHaibing wrote:
> Remove including <linux/version.h> that don't need it.
> 
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> Acked-by: Florian Fainelli <f.fainelli@gmail.com>
> Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>
> Reviewed-by: Kamal Dasu <kdasu.kdev@gmail.com>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel

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

end of thread, other threads:[~2020-05-10 20:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-17 10:11 [PATCH -next] mtd: rawnand: brcmnand: Remove unused including <linux/version.h> YueHaibing
2020-04-17 17:33 ` Florian Fainelli
2020-04-17 18:40 ` Kamal Dasu
2020-04-27 14:43   ` Miquel Raynal
2020-04-27 15:38     ` Kamal Dasu
2020-05-10 20:06 ` Miquel Raynal

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