From: Jerome Brunet Date: Wed, 12 Aug 2026 20:50:34 +0000 (+0200) Subject: ASoC: meson: aiu: make aiu_formatter_i2s_drv static X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=583e44f2828b9628535c099ebdeb8758c9b2d90f;p=linux ASoC: meson: aiu: make aiu_formatter_i2s_drv static aiu_formatter_i2s_drv is indeed used only in the aiu and it is not meant to be exported. It should be static. Cc: Valerio Setti Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202608080634.hf6aJGPB-lkp@intel.com/ Fixes: 83b83024cdbf ("ASoC: meson: aiu: use aiu-formatter-i2s to format I2S output data") Signed-off-by: Jerome Brunet Reviewed-by: Valerio Setti Link: https://patch.msgid.link/20260812-aiu-formatter-static-v1-1-67936d57ba05@baylibre.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/meson/aiu.c b/sound/soc/meson/aiu.c index 2668646e3597e..535fbf7c16394 100644 --- a/sound/soc/meson/aiu.c +++ b/sound/soc/meson/aiu.c @@ -182,7 +182,7 @@ static const struct regmap_config aiu_regmap_cfg = { .max_register = 0x2ac, }; -const struct gx_formatter_driver aiu_formatter_i2s_drv = { +static const struct gx_formatter_driver aiu_formatter_i2s_drv = { .regmap_cfg = &aiu_regmap_cfg, .ops = &aiu_formatter_i2s_ops, };