]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ASoC: renesas: fsi: Constify struct fsi_stream_handler
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 26 Oct 2025 19:43:36 +0000 (20:43 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 27 Oct 2025 12:22:48 +0000 (12:22 +0000)
commitd29479abaded34b2b1dab2e17efe96a65eba3d61
tree21df7c0b8987415a57ea4de8a6a457b2e36c7b2f
parentc17fa4cbc546c431ccf13e9354d5d9c1cd247b7c
ASoC: renesas: fsi: Constify struct fsi_stream_handler

'struct fsi_stream_handler' is not modified in this driver.

Constifying this structure moves some data to a read-only section, so
increases overall security, especially when the structure holds some
function pointers.

On a x86_64, with allmodconfig:
Before:
======
   text    data     bss     dec     hex filename
  51837   12312      64   64213    fad5 sound/soc/renesas/fsi.o

After:
=====
   text    data     bss     dec     hex filename
  52125   12024      64   64213    fad5 sound/soc/renesas/fsi.o

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://patch.msgid.link/88ca34df9006b74a7596b91714e700bcff666c4b.1761507792.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/renesas/fsi.c