mtd: spi-nor: sst: Use flash late_init() for locking
Locking is not described in JESD216 SFDP standard, place the locking init in late_init(). Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Reviewed-by: Michael Walle <michael@walle.cc> Reviewed-by: Pratyush Yadav <p.yadav@ti.com> Link: https://lore.kernel.org/r/20211029172633.886453-8-tudor.ambarus@microchip.com
This commit is contained in:
parent
b0fa1db7d2
commit
7d4ff0613f
@ -46,13 +46,13 @@ static const struct spi_nor_locking_ops sst26vf_locking_ops = {
|
||||
.is_locked = sst26vf_is_locked,
|
||||
};
|
||||
|
||||
static void sst26vf_default_init(struct spi_nor *nor)
|
||||
static void sst26vf_late_init(struct spi_nor *nor)
|
||||
{
|
||||
nor->params->locking_ops = &sst26vf_locking_ops;
|
||||
}
|
||||
|
||||
static const struct spi_nor_fixups sst26vf_fixups = {
|
||||
.default_init = sst26vf_default_init,
|
||||
.late_init = sst26vf_late_init,
|
||||
};
|
||||
|
||||
static const struct flash_info sst_parts[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user