Commit 9650b9be authored by Brian Norris's avatar Brian Norris

mtd: m25p80: fixup device removal failure path

Device removal should fail if MTD unregistration fails.
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Reviewed-by: default avatarMarek Vasut <marex@denx.de>
parent d367e37e
......@@ -1125,9 +1125,7 @@ static int m25p_remove(struct spi_device *spi)
struct m25p *flash = spi_get_drvdata(spi);
/* Clean up MTD stuff. */
mtd_device_unregister(&flash->mtd);
return 0;
return mtd_device_unregister(&flash->mtd);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment