ASoC: rt5514: make array div static const, makes object smaller
authorColin Ian King <colin.king@canonical.com>
Sun, 1 Aug 2021 06:40:23 +0000 (07:40 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 3 Aug 2021 17:27:16 +0000 (18:27 +0100)
Don't populate the array div on the stack but instead it
static const. Makes the object code smaller by 48 bytes.

Before:
   text    data     bss     dec     hex filename
  53894   16368     128   70390   112f6 ./sound/soc/codecs/rt5514.o

After:
   text    data     bss     dec     hex filename
  53750   16464     128   70342   112c6 ./sound/soc/codecs/rt5514.o

(gcc version 10.2.0)

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210801064023.138359-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt5514.c

index 7081142a355e12f24c1430869b6a5f7128e18729..4b1ad5054e8d1542ce300bd79c0c4a1c194f8ae7 100644 (file)
@@ -494,7 +494,7 @@ static const struct snd_kcontrol_new rt5514_sto2_dmic_mux =
  */
 static int rt5514_calc_dmic_clk(struct snd_soc_component *component, int rate)
 {
-       int div[] = {2, 3, 4, 8, 12, 16, 24, 32};
+       static const int div[] = {2, 3, 4, 8, 12, 16, 24, 32};
        int i;
 
        if (rate < 1000000 * div[0]) {