All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: partitions: kill unused ecclayout struct
@ 2015-11-12  1:05 Brian Norris
  2015-11-12  1:08 ` Brian Norris
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Brian Norris @ 2015-11-12  1:05 UTC (permalink / raw)
  To: linux-mtd; +Cc: Brian Norris, Boris Brezillon, Brian Foster

This field is not used.

Reported here:

http://lists.infradead.org/pipermail/linux-mtd/2015-October/062417.html

Reported-by: Brian Foster <brian.foster@maximintegrated.com>
Cc: Brian Foster <brian.foster@maximintegrated.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
---
Depends on this for killing its last use:

  http://patchwork.ozlabs.org/patch/543159/

 include/linux/mtd/partitions.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h
index 282644c0c5c0..34388ced421a 100644
--- a/include/linux/mtd/partitions.h
+++ b/include/linux/mtd/partitions.h
@@ -41,7 +41,6 @@ struct mtd_partition {
 	uint64_t size;			/* partition size */
 	uint64_t offset;		/* offset within the master MTD space */
 	uint32_t mask_flags;		/* master MTD flags to mask out for this partition */
-	struct nand_ecclayout *ecclayout;	/* out of band layout for this partition (NAND only) */
 	struct device_node *of_node;	/* OF node attached to the partition */
 };
 
-- 
2.6.0.rc2.230.g3dd15c0

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

* Re: [PATCH] mtd: partitions: kill unused ecclayout struct
  2015-11-12  1:05 [PATCH] mtd: partitions: kill unused ecclayout struct Brian Norris
@ 2015-11-12  1:08 ` Brian Norris
  2015-11-12  8:42 ` Boris Brezillon
  2015-11-16  9:59 ` Brian Foster
  2 siblings, 0 replies; 5+ messages in thread
From: Brian Norris @ 2015-11-12  1:08 UTC (permalink / raw)
  To: linux-mtd; +Cc: Boris Brezillon, Brian Foster

On Wed, Nov 11, 2015 at 05:05:56PM -0800, Brian Norris wrote:
> Depends on this for killing its last use:
> 
>   http://patchwork.ozlabs.org/patch/543159/

Also depends on this, for context:

  http://patchwork.ozlabs.org/patch/543161/

I should have just made these a series...

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

* Re: [PATCH] mtd: partitions: kill unused ecclayout struct
  2015-11-12  1:05 [PATCH] mtd: partitions: kill unused ecclayout struct Brian Norris
  2015-11-12  1:08 ` Brian Norris
@ 2015-11-12  8:42 ` Boris Brezillon
  2015-11-12 18:13   ` Brian Norris
  2015-11-16  9:59 ` Brian Foster
  2 siblings, 1 reply; 5+ messages in thread
From: Boris Brezillon @ 2015-11-12  8:42 UTC (permalink / raw)
  To: Brian Norris; +Cc: linux-mtd, Brian Foster

On Wed, 11 Nov 2015 17:05:56 -0800
Brian Norris <computersforpeace@gmail.com> wrote:

> This field is not used.
> 
> Reported here:
> 
> http://lists.infradead.org/pipermail/linux-mtd/2015-October/062417.html
> 
> Reported-by: Brian Foster <brian.foster@maximintegrated.com>
> Cc: Brian Foster <brian.foster@maximintegrated.com>
> Signed-off-by: Brian Norris <computersforpeace@gmail.com>

Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
> Depends on this for killing its last use:
> 
>   http://patchwork.ozlabs.org/patch/543159/
> 
>  include/linux/mtd/partitions.h | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h
> index 282644c0c5c0..34388ced421a 100644
> --- a/include/linux/mtd/partitions.h
> +++ b/include/linux/mtd/partitions.h
> @@ -41,7 +41,6 @@ struct mtd_partition {
>  	uint64_t size;			/* partition size */
>  	uint64_t offset;		/* offset within the master MTD space */
>  	uint32_t mask_flags;		/* master MTD flags to mask out for this partition */
> -	struct nand_ecclayout *ecclayout;	/* out of band layout for this partition (NAND only) */
>  	struct device_node *of_node;	/* OF node attached to the partition */
>  };
>  



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

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

* Re: [PATCH] mtd: partitions: kill unused ecclayout struct
  2015-11-12  8:42 ` Boris Brezillon
@ 2015-11-12 18:13   ` Brian Norris
  0 siblings, 0 replies; 5+ messages in thread
From: Brian Norris @ 2015-11-12 18:13 UTC (permalink / raw)
  To: Boris Brezillon; +Cc: linux-mtd, Brian Foster

On Thu, Nov 12, 2015 at 09:42:41AM +0100, Boris Brezillon wrote:
> On Wed, 11 Nov 2015 17:05:56 -0800
> Brian Norris <computersforpeace@gmail.com> wrote:
> 
> > This field is not used.
> > 
> > Reported here:
> > 
> > http://lists.infradead.org/pipermail/linux-mtd/2015-October/062417.html
> > 
> > Reported-by: Brian Foster <brian.foster@maximintegrated.com>
> > Cc: Brian Foster <brian.foster@maximintegrated.com>
> > Signed-off-by: Brian Norris <computersforpeace@gmail.com>
> 
> Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>

Adjusted the context a bit and pushed to l2-mtd.git/next

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

* Re: [PATCH] mtd: partitions: kill unused ecclayout struct
  2015-11-12  1:05 [PATCH] mtd: partitions: kill unused ecclayout struct Brian Norris
  2015-11-12  1:08 ` Brian Norris
  2015-11-12  8:42 ` Boris Brezillon
@ 2015-11-16  9:59 ` Brian Foster
  2 siblings, 0 replies; 5+ messages in thread
From: Brian Foster @ 2015-11-16  9:59 UTC (permalink / raw)
  To: Brian Norris; +Cc: linux-mtd, Boris Brezillon

On Wednesday 11-November-2015 17:05:56 Brian Norris wrote:
> This field is not used.
> 
> Reported here:
> 
> http://lists.infradead.org/pipermail/linux-mtd/2015-October/062417.html
> 
> Reported-by: Brian Foster <brian.foster@maximintegrated.com>
> Cc: Brian Foster <brian.foster@maximintegrated.com>
> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
> ---
> Depends on this for killing its last use:
> 
>   http://patchwork.ozlabs.org/patch/543159/

  Looks Ok to me.

cheers!
	-blf-

-- 
Brian Foster
Principal MTS, Software        |  La Ciotat, France
Maxim Integrated               |  http://www.maximintegrated.com/

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

end of thread, other threads:[~2015-11-16 10:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-12  1:05 [PATCH] mtd: partitions: kill unused ecclayout struct Brian Norris
2015-11-12  1:08 ` Brian Norris
2015-11-12  8:42 ` Boris Brezillon
2015-11-12 18:13   ` Brian Norris
2015-11-16  9:59 ` Brian Foster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.