[U-Boot] [PATCH v6 4/4] mtd, spi: check if flash pointer is used

Heiko Schocher hs at denx.de
Mon Apr 27 07:42:07 CEST 2015


if flash pointer is used free it, before probing a new
flash and storing it in flash.

Signed-off-by: Heiko Schocher <hs at denx.de>
---

Changes in v6:
- add comments from Jagan Teki:
  new patch in this patchserie, extract this piece
  of code into a new patch.

Changes in v2: None

 common/cmd_sf.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/common/cmd_sf.c b/common/cmd_sf.c
index 3bf9119..e58058d 100644
--- a/common/cmd_sf.c
+++ b/common/cmd_sf.c
@@ -135,7 +135,12 @@ static int do_spi_flash_probe(int argc, char * const argv[])
 
 	flash = dev_get_uclass_priv(new);
 #else
+	if (flash)
+		spi_flash_free(flash);
+
 	new = spi_flash_probe(bus, cs, speed, mode);
+	flash = new;
+
 	if (!new) {
 		printf("Failed to initialize SPI flash at %u:%u\n", bus, cs);
 		return 1;
-- 
2.1.0



More information about the U-Boot mailing list