All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static
@ 2022-11-02 15:29 Colin Ian King
  2022-11-02 16:19 ` Han Xu
  2022-11-02 17:37 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2022-11-02 15:29 UTC (permalink / raw)
  To: Han Xu, Haibo Chen, Yogesh Gaur, Mark Brown, linux-spi
  Cc: kernel-janitors, linux-kernel

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>
---
 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 */ }
 	};
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static
  2022-11-02 15:29 [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static Colin Ian King
@ 2022-11-02 16:19 ` Han Xu
  2022-11-02 17:37 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Han Xu @ 2022-11-02 16:19 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Haibo Chen, Yogesh Gaur, Mark Brown, linux-spi, kernel-janitors,
	linux-kernel

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@gmail.com>
> ---
>  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@nxp.com>

> -- 
> 2.37.3
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static
  2022-11-02 15:29 [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static Colin Ian King
  2022-11-02 16:19 ` Han Xu
@ 2022-11-02 17:37 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2022-11-02 17:37 UTC (permalink / raw)
  To: Yogesh Gaur, Han Xu, linux-spi, Haibo Chen, Colin Ian King
  Cc: kernel-janitors, linux-kernel

On Wed, 2 Nov 2022 15:29:04 +0000, 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.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: nxp-fspi: make const array ls1028a_soc_attr static
      commit: 6c6c49f2c0993ab3ea4bb71a12c800afd0c59e30

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-02 17:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-02 15:29 [PATCH] spi: nxp-fspi: make const array ls1028a_soc_attr static Colin Ian King
2022-11-02 16:19 ` Han Xu
2022-11-02 17:37 ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.