mtd: Fix get_mtdparts()
authorPatrice Chotard <patrice.chotard@st.com>
Wed, 23 Jan 2019 17:12:48 +0000 (18:12 +0100)
committerPatrice Chotard <patrice.chotard@st.com>
Thu, 6 Jun 2019 15:40:14 +0000 (17:40 +0200)
commite6b7afe737f95f61f347a340acdda1a48d29ed50
treebd8cf0476527d49abd3b517b9c1bfce061eb272f
parent8f24b1a4a97cbeb8f2756be62bd524f166423406
mtd: Fix get_mtdparts()

When ENV_IS_IN_UBI is enable, get_mtdparts is called before relocation.

During first get_mtdparts() call, mtdparts is not available in environment,
it can be retrieved by calling board_mtdparts_default(), but following
env_set() do nothing as we are before relocation. Finally mtdparts is
still not available in environment.

At second get_mtdparts() call, use_defaults is false, but mtdparts is still
not in environment and is NULL.

Remove use_defaults bool, only mtdparts criteria is useful.

Fixes: commit 5ffcd50612f6 ("mtd: Use default mtdparts/mtids when not defined
in the environment")

Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
drivers/mtd/mtd_uboot.c