spi: flash: don't print the JEDEC ID any longer

This commit is contained in:
S.J.R. van Schaik 2017-06-14 14:37:04 +02:00
parent 440c598d16
commit e7ad03608a

View file

@ -68,8 +68,6 @@ static size_t spi_flash_get_size(struct flash_dev *dev)
spi_flash_get_jedec_id(dev, jedec_id, sizeof jedec_id);
printf("%02x%02x%02x%02x\n", jedec_id[0], jedec_id[1], jedec_id[2], jedec_id[3]);
return SPI_FLASH_SIZE(jedec_id[2]);
}