diff options
| author | Jagan Teki <[email protected]> | 2016-10-30 23:16:27 +0530 |
|---|---|---|
| committer | Jagan Teki <[email protected]> | 2016-11-19 08:41:53 +0530 |
| commit | dc19b06ff23fb8f97e445f1c94dd5ae43046ea61 (patch) | |
| tree | 0e5a347febdaea8e44825d35c70eab923321b9c3 | |
| parent | 20343ff3ad7005ac128866978443c7ebfa82a852 (diff) | |
sf: dataflash: Remove unneeded spi data
dataflash doesn't require options, memory_map from spi.
Cc: Bin Meng <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: York Sun <[email protected]>
Signed-off-by: Jagan Teki <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
| -rw-r--r-- | drivers/mtd/spi/sf_dataflash.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/mtd/spi/sf_dataflash.c b/drivers/mtd/spi/sf_dataflash.c index b2a56da7cad..6a9dfefcb00 100644 --- a/drivers/mtd/spi/sf_dataflash.c +++ b/drivers/mtd/spi/sf_dataflash.c @@ -584,6 +584,7 @@ static int spi_dataflash_probe(struct udevice *dev) int ret, status = 0; spi_flash = dev_get_uclass_priv(dev); + spi_flash->spi = spi; spi_flash->dev = dev; ret = spi_claim_bus(spi); @@ -664,11 +665,6 @@ static int spi_dataflash_probe(struct udevice *dev) } } - /* Assign spi data */ - spi_flash->spi = spi; - spi_flash->memory_map = spi->memory_map; - spi_flash->dual_flash = spi->option; - spi_release_bus(spi); return 0; |
