From: Colin Ian King Date: Thu, 25 Apr 2024 16:07:54 +0000 (+0100) Subject: ALSA: kunit: make read-only array buf_samples static const X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=957a36c4fcf47aaa4f0d54bdb8050d86880b7f01;p=linux.git ALSA: kunit: make read-only array buf_samples static const Don't populate the read-only array buf_samples on the stack at run time, instead make it static const. Signed-off-by: Colin Ian King Acked-by: Ivan Orlov Reviewed-by: Takashi Sakamoto Signed-off-by: Takashi Iwai Message-ID: <20240425160754.114716-1-colin.i.king@gmail.com> --- diff --git a/sound/core/sound_kunit.c b/sound/core/sound_kunit.c index eb90f62228c02..e34c4317f5eb3 100644 --- a/sound/core/sound_kunit.c +++ b/sound/core/sound_kunit.c @@ -167,7 +167,7 @@ static void _test_fill_silence(struct kunit *test, struct snd_format_test_data * static void test_format_fill_silence(struct kunit *test) { - u32 buf_samples[] = { 10, 20, 32, 64, 129, SILENCE_BUFFER_MAX_FRAMES }; + static const u32 buf_samples[] = { 10, 20, 32, 64, 129, SILENCE_BUFFER_MAX_FRAMES }; u8 *buffer; u32 i, j;