Hi,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on broonie-sound/for-next] [also build test WARNING on linus/master v6.1-rc6 next-20221121] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/wangweidong-a-awinic-com/ASoC... base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/20221115022423.6437-7-wangweidong.a%40awinic.com patch subject: [PATCH V4 6/6] ASoC:codecs:aw883xx corresponds to the modified Makefile and Kconfig config: mips-randconfig-r033-20221120 compiler: clang version 16.0.0 (https://github.com/llvm/llvm-project af8c49dc1ec44339d915d988ffe0f38da68ca0e7) reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # install mips cross compiling tool for clang build # apt-get install binutils-mips-linux-gnu # https://github.com/intel-lab-lkp/linux/commit/c8a570919d7c94b5fc8891f6ec05a3... git remote add linux-review https://github.com/intel-lab-lkp/linux git fetch --no-tags linux-review wangweidong-a-awinic-com/ASoC-codecs-Add-i2c-and-codec-registration-for-aw883xx-and-their-associated-operation-functions/20221115-112427 git checkout c8a570919d7c94b5fc8891f6ec05a3721bb7dc89 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=mips SHELL=/bin/bash sound/soc/codecs/
If you fix the issue, kindly add following tag where applicable | Reported-by: kernel test robot lkp@intel.com
All warnings (new ones prefixed by >>):
sound/soc/codecs/aw883xx/aw883xx.c:1784:34: warning: unused variable 'aw883xx_dt_match' [-Wunused-const-variable]
static const struct of_device_id aw883xx_dt_match[] = { ^ 1 warning generated. --
sound/soc/codecs/aw883xx/aw883xx_bin_parse.c:1021:5: warning: stack frame size (1272) exceeds limit (1024) in 'aw883xx_dev_cfg_load' [-Wframe-larger-than]
int aw883xx_dev_cfg_load(struct aw_device *aw_dev, struct aw_container *aw_cfg) ^ 368/1272 (28.93%) spills, 904/1272 (71.07%) variables 1 warning generated.
vim +/aw883xx_dt_match +1784 sound/soc/codecs/aw883xx/aw883xx.c
1550e93e1c1d0d Weidong Wang 2022-11-15 1783 1550e93e1c1d0d Weidong Wang 2022-11-15 @1784 static const struct of_device_id aw883xx_dt_match[] = { 1550e93e1c1d0d Weidong Wang 2022-11-15 1785 {.compatible = "awinic,aw883xx_smartpa"}, 1550e93e1c1d0d Weidong Wang 2022-11-15 1786 {}, 1550e93e1c1d0d Weidong Wang 2022-11-15 1787 }; 1550e93e1c1d0d Weidong Wang 2022-11-15 1788