spi: nxp-fspi: make const array ls1028a_soc_attr static
Don't populate the const array ls1028a_soc_attr on the stack, instead make it static. Also makes the object code smaller. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Acked-by: Han Xu <han.xu@nxp.com> Link: https://lore.kernel.org/r/20221102152904.143423-1-colin.i.king@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
b8d3b056a7
commit
6c6c49f2c0
|
@ -924,7 +924,7 @@ static int nxp_fspi_adjust_op_size(struct spi_mem *mem, struct spi_mem_op *op)
|
|||
|
||||
static void erratum_err050568(struct nxp_fspi *f)
|
||||
{
|
||||
const struct soc_device_attribute ls1028a_soc_attr[] = {
|
||||
static const struct soc_device_attribute ls1028a_soc_attr[] = {
|
||||
{ .family = "QorIQ LS1028A" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue