On 22/11/02 03:29PM, Colin Ian King wrote: > 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@xxxxxxxxx> > --- > drivers/spi/spi-nxp-fspi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/spi/spi-nxp-fspi.c b/drivers/spi/spi-nxp-fspi.c > index d6a65a989ef8..1c1991a26c15 100644 > --- a/drivers/spi/spi-nxp-fspi.c > +++ b/drivers/spi/spi-nxp-fspi.c > @@ -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 */ } > }; Acked-by: Han Xu <han.xu@xxxxxxx> > -- > 2.37.3 >