diff mbox

[U-Boot] common: fdt_support: Remove check for mtdparts in fdt_fixup_mtdparts

Message ID 20170109101727.lt7iaychcbvpfgnp@lenoch
State Accepted
Commit 136026f18ed7bdfadc1af1696eced2b13af003d7
Delegated to: Simon Glass
Headers show

Commit Message

Ladislav Michl Jan. 9, 2017, 10:17 a.m. UTC
fdt_fixup_mtdparts currently does nothing when partitin info is
runtime generated or compiled-in defaults are used.

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
 common/fdt_support.c | 5 -----
 1 file changed, 5 deletions(-)

Comments

Simon Glass Feb. 8, 2017, 5:41 p.m. UTC | #1
On 9 January 2017 at 03:17, Ladislav Michl <ladis@linux-mips.org> wrote:
> fdt_fixup_mtdparts currently does nothing when partitin info is
> runtime generated or compiled-in defaults are used.
>
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
>  common/fdt_support.c | 5 -----
>  1 file changed, 5 deletions(-)

Fixed commit message nits and

Applied to u-boot-dm, thanks!
diff mbox

Patch

diff --git a/common/fdt_support.c b/common/fdt_support.c
index c9f7019e38..a57a5759e4 100644
--- a/common/fdt_support.c
+++ b/common/fdt_support.c
@@ -903,14 +903,9 @@  void fdt_fixup_mtdparts(void *blob, void *node_info, int node_info_size)
 {
 	struct node_info *ni = node_info;
 	struct mtd_device *dev;
-	char *parts;
 	int i, idx;
 	int noff;
 
-	parts = getenv("mtdparts");
-	if (!parts)
-		return;
-
 	if (mtdparts_init() != 0)
 		return;