mtd: spi-nor: spansion: return method directly

Remove unnecessary handling of method's return code and return the
method directly.

Link: https://lore.kernel.org/r/20230721170911.13502-1-tudor.ambarus@linaro.org
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
This commit is contained in:
Tudor Ambarus 2023-07-21 20:09:11 +03:00
parent d4996700ab
commit abfac0f3a4
No known key found for this signature in database
GPG Key ID: 4B554F47A58D14E9

View File

@ -656,13 +656,7 @@ static int s28hx_t_post_bfpt_fixup(struct spi_nor *nor,
const struct sfdp_parameter_header *bfpt_header,
const struct sfdp_bfpt *bfpt)
{
int ret;
ret = cypress_nor_set_addr_mode_nbytes(nor);
if (ret)
return ret;
return 0;
return cypress_nor_set_addr_mode_nbytes(nor);
}
static void s28hx_t_late_init(struct spi_nor *nor)