aboutsummaryrefslogtreecommitdiff
path: root/drivers/dfu/dfu_mtd.c
diff options
context:
space:
mode:
authorGuillermo Rodriguez <guille.rodriguez@gmail.com>2020-09-02 13:06:06 +0200
committerMarek Vasut <marex@denx.de>2021-01-31 14:08:56 +0100
commit1b3c4cb1e392bf9365ac633d305c6a1aac9b94e1 (patch)
tree07944f1620d936dd73e8cb482bbe1900738d03cc /drivers/dfu/dfu_mtd.c
parent472a716b8fdfd88a27cb675e4ea8e12cb4f79fc3 (diff)
downloadu-boot-1b3c4cb1e392bf9365ac633d305c6a1aac9b94e1.zip
u-boot-1b3c4cb1e392bf9365ac633d305c6a1aac9b94e1.tar.gz
u-boot-1b3c4cb1e392bf9365ac633d305c6a1aac9b94e1.tar.bz2
dfu: Fix handling of UBI partitions in MTD backend
For UBI partitions ("partubi" in dfu_alt_info), dfu_fill_entity_mtd sets the mtd.ubi flag; however other functions incorrectly check for nand.ubi instead. Fix this by checking for the correct flag. Signed-off-by: Guillermo Rodriguez <guille.rodriguez@gmail.com> Cc: Lukasz Majewski <lukma@denx.de> Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/dfu/dfu_mtd.c')
-rw-r--r--drivers/dfu/dfu_mtd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dfu/dfu_mtd.c b/drivers/dfu/dfu_mtd.c
index b34975d..ca67585 100644
--- a/drivers/dfu/dfu_mtd.c
+++ b/drivers/dfu/dfu_mtd.c
@@ -204,7 +204,7 @@ static int dfu_flush_medium_mtd(struct dfu_entity *dfu)
int ret;
/* in case of ubi partition, erase rest of the partition */
- if (dfu->data.nand.ubi) {
+ if (dfu->data.mtd.ubi) {
struct erase_info erase_op = {};
erase_op.mtd = dfu->data.mtd.info;
@@ -242,7 +242,7 @@ static unsigned int dfu_polltimeout_mtd(struct dfu_entity *dfu)
* ubi partition, as sectors which are not used need
* to be erased
*/
- if (dfu->data.nand.ubi)
+ if (dfu->data.mtd.ubi)
return DFU_MANIFEST_POLL_TIMEOUT;
return DFU_DEFAULT_POLL_TIMEOUT;