tree: https://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl-for-v5.20 head: 1e18476c392f4491a93c29937c4d6a49c27661c8 commit: 1e18476c392f4491a93c29937c4d6a49c27661c8 [5/5] pinctrl: renesas: Add RZ/V2M pin and gpio controller driver config: sh-allmodconfig (https://download.01.org/0day-ci/archive/20220630/202206300252.mQeUSfuW-lkp@xxxxxxxxx/config) compiler: sh4-linux-gcc (GCC) 11.3.0 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 # https://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git/commit/?id=1e18476c392f4491a93c29937c4d6a49c27661c8 git remote add geert-renesas-drivers https://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git git fetch --no-tags geert-renesas-drivers renesas-pinctrl-for-v5.20 git checkout 1e18476c392f4491a93c29937c4d6a49c27661c8 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=sh SHELL=/bin/bash If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot <lkp@xxxxxxxxx> All errors (new ones prefixed by >>): drivers/pinctrl/renesas/pinctrl-rzv2m.c: In function 'rzv2m_dt_subnode_to_map': >> drivers/pinctrl/renesas/pinctrl-rzv2m.c:37:33: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration] 37 | #define MUX_FUNC(pinconf) FIELD_GET(MUX_FUNC_MASK, (pinconf)) | ^~~~~~~~~ drivers/pinctrl/renesas/pinctrl-rzv2m.c:306:31: note: in expansion of macro 'MUX_FUNC' 306 | psel_val[i] = MUX_FUNC(value); | ^~~~~~~~ cc1: some warnings being treated as errors vim +/FIELD_GET +37 drivers/pinctrl/renesas/pinctrl-rzv2m.c 30 31 /* 32 * Use 16 lower bits [15:0] for pin identifier 33 * Use 16 higher bits [31:16] for pin mux function 34 */ 35 #define MUX_PIN_ID_MASK GENMASK(15, 0) 36 #define MUX_FUNC_MASK GENMASK(31, 16) > 37 #define MUX_FUNC(pinconf) FIELD_GET(MUX_FUNC_MASK, (pinconf)) 38 -- 0-DAY CI Kernel Test Service https://01.org/lkp