mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 09:56:58 +07:00
mtd: spi-nor: hisi-sfc: Drop nor->erase NULL assignment
The pointer to 'struct spi_nor' is kzalloc'ed above in the code. Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
This commit is contained in:
parent
172b33212d
commit
1a21bdfeac
@ -364,7 +364,6 @@ static int hisi_spi_nor_register(struct device_node *np,
|
|||||||
nor->write_reg = hisi_spi_nor_write_reg;
|
nor->write_reg = hisi_spi_nor_write_reg;
|
||||||
nor->read = hisi_spi_nor_read;
|
nor->read = hisi_spi_nor_read;
|
||||||
nor->write = hisi_spi_nor_write;
|
nor->write = hisi_spi_nor_write;
|
||||||
nor->erase = NULL;
|
|
||||||
ret = spi_nor_scan(nor, NULL, &hwcaps);
|
ret = spi_nor_scan(nor, NULL, &hwcaps);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user