summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJagan Teki <[email protected]>2016-10-30 23:16:21 +0530
committerJagan Teki <[email protected]>2016-11-18 13:04:53 +0530
commit475bf816f1fbc7be5c5ba12cd456841a0f9508c9 (patch)
tree5bc85fd5b710ac343bdade6532887a333a026eeb /drivers
parent116e005cfd00021424f5f81eeedd355e4ca72f07 (diff)
sf: Remove non-meaningful comments
Remove unneeded/non-meaningful commit message on params and flash. Cc: Bin Meng <[email protected]> Cc: York Sun <[email protected]> Cc: Vignesh R <[email protected]> Cc: Mugunthan V N <[email protected]> Cc: Michal Simek <[email protected]> Signed-off-by: Jagan Teki <[email protected]> Reviewed-by: Simon Glass <[email protected]> Reviewed-by: Jagan Teki <[email protected]> Reviewed-by: Siva Durga Prasad Paladugu <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/spi/sf_params.c1
-rw-r--r--drivers/mtd/spi/spi_flash.c3
2 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mtd/spi/sf_params.c b/drivers/mtd/spi/sf_params.c
index 7b9e5efaf88..4613258cd36 100644
--- a/drivers/mtd/spi/sf_params.c
+++ b/drivers/mtd/spi/sf_params.c
@@ -42,7 +42,6 @@
.page_size = 256, \
.flags = (_flags),
-/* SPI/QSPI flash device params structure */
const struct spi_flash_info spi_flash_ids[] = {
#ifdef CONFIG_SPI_FLASH_ATMEL /* ATMEL */
{"AT45DB011D", INFO(0x1f2200, 0x0, 64 * 1024, 4, SECT_4K) },
diff --git a/drivers/mtd/spi/spi_flash.c b/drivers/mtd/spi/spi_flash.c
index b126a217f72..813f08dca45 100644
--- a/drivers/mtd/spi/spi_flash.c
+++ b/drivers/mtd/spi/spi_flash.c
@@ -1015,16 +1015,13 @@ int spi_flash_scan(struct spi_flash *flash)
JEDEC_MFR(info) == SPI_FLASH_CFI_MFR_SST)
write_sr(flash, 0);
- /* Assign spi data */
flash->name = info->name;
flash->memory_map = spi->memory_map;
flash->dual_flash = spi->option;
- /* Assign spi flash flags */
if (info->flags & SST_WR)
flash->flags |= SNOR_F_SST_WR;
- /* Assign spi_flash ops */
#ifndef CONFIG_DM_SPI_FLASH
flash->write = spi_flash_cmd_write_ops;
#if defined(CONFIG_SPI_FLASH_SST)