diff options
| author | Jagan Teki <[email protected]> | 2020-05-14 16:37:57 +0530 |
|---|---|---|
| committer | Jagan Teki <[email protected]> | 2020-06-01 17:55:24 +0530 |
| commit | c862b91d9381dd5bf7a25fc2f0e73d73b1512a57 (patch) | |
| tree | 6ffeb7fcfc70e4cf0e932b4843edafa0c768bab3 /drivers | |
| parent | c8cbf1707cba99cfdf1a6a33e03956a5a788183a (diff) | |
mtd: sf: Drop plat from sf_probe
dm_spi_slave_platdata used in sf_probe for printing
plat->cs value and there is no relevant usage apart
from this.
We have enough debug messages available in SPI and SF
areas so drop this plat get and associated bug statement.
Cc: Simon Glass <[email protected]>
Cc: Vignesh R <[email protected]>
Signed-off-by: Jagan Teki <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/spi/sf_probe.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_probe.c index 4e9973bb62a..3548d6319b3 100644 --- a/drivers/mtd/spi/sf_probe.c +++ b/drivers/mtd/spi/sf_probe.c @@ -133,13 +133,11 @@ static int spi_flash_std_erase(struct udevice *dev, u32 offset, size_t len) int spi_flash_std_probe(struct udevice *dev) { struct spi_slave *slave = dev_get_parent_priv(dev); - struct dm_spi_slave_platdata *plat = dev_get_parent_platdata(dev); struct spi_flash *flash; flash = dev_get_uclass_priv(dev); flash->dev = dev; flash->spi = slave; - debug("%s: slave=%p, cs=%d\n", __func__, slave, plat->cs); return spi_flash_probe_slave(flash); } |
