drivers: flash: stm32 ospi: remove not required setting of writeoc

Remove dead code. The write opcode instruction
is set based on dev_data a couple of lines after.

This was supposed to be in the merged "memory map
support for other modes" PR.

Signed-off-by: Georgij Cernysiov <geo.cgv@gmail.com>
This commit is contained in:
Georgij Cernysiov 2024-08-14 13:19:33 +02:00 committed by Anas Nashif
parent b8bed5b077
commit b8bf23b707
1 changed files with 0 additions and 10 deletions

View File

@ -1057,16 +1057,6 @@ static int stm32_ospi_set_memorymap(const struct device *dev)
/* Initialize the program command */
s_command.OperationType = HAL_OSPI_OPTYPE_WRITE_CFG;
if (dev_cfg->data_rate == OSPI_STR_TRANSFER) {
s_command.Instruction = (dev_cfg->data_mode == OSPI_SPI_MODE)
? ((stm32_ospi_hal_address_size(dev) ==
HAL_OSPI_ADDRESS_24_BITS)
? SPI_NOR_CMD_PP
: SPI_NOR_CMD_PP_4B)
: SPI_NOR_OCMD_PAGE_PRG;
} else {
s_command.Instruction = SPI_NOR_OCMD_PAGE_PRG;
}
s_command.DQSMode = HAL_OSPI_DQS_DISABLE;
s_command.Instruction = dev_data->write_opcode;