linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Rohit Agarwal <quic_rohiagar@quicinc.com>,
	agross@kernel.org, andersson@kernel.org,
	konrad.dybcio@linaro.org, linus.walleij@linaro.org,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	richardcochran@gmail.com, manivannan.sadhasivam@linaro.org,
	andy.shevchenko@gmail.com
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	linux-arm-msm@vger.kernel.org, linux-gpio@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	netdev@vger.kernel.org, Rohit Agarwal <quic_rohiagar@quicinc.com>
Subject: Re: [PATCH 1/2] pinctrl: qcom: Remove the msm_function struct
Date: Sat, 13 May 2023 01:33:03 +0800	[thread overview]
Message-ID: <202305130111.lKmkjiDs-lkp@intel.com> (raw)
In-Reply-To: <1683892553-19882-2-git-send-email-quic_rohiagar@quicinc.com>

Hi Rohit,

kernel test robot noticed the following build errors:

[auto build test ERROR on linusw-pinctrl/devel]
[also build test ERROR on linusw-pinctrl/for-next linus/master v6.4-rc1 next-20230512]
[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/Rohit-Agarwal/pinctrl-qcom-Remove-the-msm_function-struct/20230512-195910
base:   https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git devel
patch link:    https://lore.kernel.org/r/1683892553-19882-2-git-send-email-quic_rohiagar%40quicinc.com
patch subject: [PATCH 1/2] pinctrl: qcom: Remove the msm_function struct
config: arm64-buildonly-randconfig-r006-20230511 (https://download.01.org/0day-ci/archive/20230513/202305130111.lKmkjiDs-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project b0fb98227c90adf2536c9ad644a74d5e92961111)
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 arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # https://github.com/intel-lab-lkp/linux/commit/3d2ada4f090f8ebd3b604ccb917394e8b30e23f8
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Rohit-Agarwal/pinctrl-qcom-Remove-the-msm_function-struct/20230512-195910
        git checkout 3d2ada4f090f8ebd3b604ccb917394e8b30e23f8
        # 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=arm64 olddefconfig
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/pinctrl/qcom/

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202305130111.lKmkjiDs-lkp@intel.com/

All errors (new ones prefixed by >>):

>> drivers/pinctrl/qcom/pinctrl-sm7150.c:969:50: error: array has incomplete element type 'const struct msm_function'
   static const struct msm_function sm7150_functions[] = {
                                                    ^
   drivers/pinctrl/qcom/pinctrl-sm7150.c:969:21: note: forward declaration of 'struct msm_function'
   static const struct msm_function sm7150_functions[] = {
                       ^
   1 error generated.


vim +969 drivers/pinctrl/qcom/pinctrl-sm7150.c

b915395c9e0436 Danila Tikhonov 2023-03-12   968  
b915395c9e0436 Danila Tikhonov 2023-03-12  @969  static const struct msm_function sm7150_functions[] = {
b915395c9e0436 Danila Tikhonov 2023-03-12   970  	FUNCTION(gpio),
b915395c9e0436 Danila Tikhonov 2023-03-12   971  	FUNCTION(adsp_ext),
b915395c9e0436 Danila Tikhonov 2023-03-12   972  	FUNCTION(agera_pll),
b915395c9e0436 Danila Tikhonov 2023-03-12   973  	FUNCTION(aoss_cti),
b915395c9e0436 Danila Tikhonov 2023-03-12   974  	FUNCTION(atest_char),
b915395c9e0436 Danila Tikhonov 2023-03-12   975  	FUNCTION(atest_tsens),
b915395c9e0436 Danila Tikhonov 2023-03-12   976  	FUNCTION(atest_tsens2),
b915395c9e0436 Danila Tikhonov 2023-03-12   977  	FUNCTION(atest_usb1),
b915395c9e0436 Danila Tikhonov 2023-03-12   978  	FUNCTION(atest_usb2),
b915395c9e0436 Danila Tikhonov 2023-03-12   979  	FUNCTION(cam_mclk),
b915395c9e0436 Danila Tikhonov 2023-03-12   980  	FUNCTION(cci_async),
b915395c9e0436 Danila Tikhonov 2023-03-12   981  	FUNCTION(cci_i2c),
b915395c9e0436 Danila Tikhonov 2023-03-12   982  	FUNCTION(cci_timer0),
b915395c9e0436 Danila Tikhonov 2023-03-12   983  	FUNCTION(cci_timer1),
b915395c9e0436 Danila Tikhonov 2023-03-12   984  	FUNCTION(cci_timer2),
b915395c9e0436 Danila Tikhonov 2023-03-12   985  	FUNCTION(cci_timer3),
b915395c9e0436 Danila Tikhonov 2023-03-12   986  	FUNCTION(cci_timer4),
b915395c9e0436 Danila Tikhonov 2023-03-12   987  	FUNCTION(dbg_out),
b915395c9e0436 Danila Tikhonov 2023-03-12   988  	FUNCTION(ddr_bist),
b915395c9e0436 Danila Tikhonov 2023-03-12   989  	FUNCTION(ddr_pxi0),
b915395c9e0436 Danila Tikhonov 2023-03-12   990  	FUNCTION(ddr_pxi1),
b915395c9e0436 Danila Tikhonov 2023-03-12   991  	FUNCTION(ddr_pxi2),
b915395c9e0436 Danila Tikhonov 2023-03-12   992  	FUNCTION(ddr_pxi3),
b915395c9e0436 Danila Tikhonov 2023-03-12   993  	FUNCTION(edp_hot),
b915395c9e0436 Danila Tikhonov 2023-03-12   994  	FUNCTION(edp_lcd),
b915395c9e0436 Danila Tikhonov 2023-03-12   995  	FUNCTION(gcc_gp1),
b915395c9e0436 Danila Tikhonov 2023-03-12   996  	FUNCTION(gcc_gp2),
b915395c9e0436 Danila Tikhonov 2023-03-12   997  	FUNCTION(gcc_gp3),
b915395c9e0436 Danila Tikhonov 2023-03-12   998  	FUNCTION(gp_pdm0),
b915395c9e0436 Danila Tikhonov 2023-03-12   999  	FUNCTION(gp_pdm1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1000  	FUNCTION(gp_pdm2),
b915395c9e0436 Danila Tikhonov 2023-03-12  1001  	FUNCTION(gps_tx),
b915395c9e0436 Danila Tikhonov 2023-03-12  1002  	FUNCTION(jitter_bist),
b915395c9e0436 Danila Tikhonov 2023-03-12  1003  	FUNCTION(ldo_en),
b915395c9e0436 Danila Tikhonov 2023-03-12  1004  	FUNCTION(ldo_update),
b915395c9e0436 Danila Tikhonov 2023-03-12  1005  	FUNCTION(m_voc),
b915395c9e0436 Danila Tikhonov 2023-03-12  1006  	FUNCTION(mdp_vsync),
b915395c9e0436 Danila Tikhonov 2023-03-12  1007  	FUNCTION(mdp_vsync0),
b915395c9e0436 Danila Tikhonov 2023-03-12  1008  	FUNCTION(mdp_vsync1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1009  	FUNCTION(mdp_vsync2),
b915395c9e0436 Danila Tikhonov 2023-03-12  1010  	FUNCTION(mdp_vsync3),
b915395c9e0436 Danila Tikhonov 2023-03-12  1011  	FUNCTION(mss_lte),
b915395c9e0436 Danila Tikhonov 2023-03-12  1012  	FUNCTION(nav_pps_in),
b915395c9e0436 Danila Tikhonov 2023-03-12  1013  	FUNCTION(nav_pps_out),
b915395c9e0436 Danila Tikhonov 2023-03-12  1014  	FUNCTION(pa_indicator),
b915395c9e0436 Danila Tikhonov 2023-03-12  1015  	FUNCTION(pci_e),
b915395c9e0436 Danila Tikhonov 2023-03-12  1016  	FUNCTION(phase_flag),
b915395c9e0436 Danila Tikhonov 2023-03-12  1017  	FUNCTION(pll_bist),
b915395c9e0436 Danila Tikhonov 2023-03-12  1018  	FUNCTION(pll_bypassnl),
b915395c9e0436 Danila Tikhonov 2023-03-12  1019  	FUNCTION(pll_reset),
b915395c9e0436 Danila Tikhonov 2023-03-12  1020  	FUNCTION(pri_mi2s),
b915395c9e0436 Danila Tikhonov 2023-03-12  1021  	FUNCTION(pri_mi2s_ws),
b915395c9e0436 Danila Tikhonov 2023-03-12  1022  	FUNCTION(prng_rosc),
b915395c9e0436 Danila Tikhonov 2023-03-12  1023  	FUNCTION(qdss_cti),
b915395c9e0436 Danila Tikhonov 2023-03-12  1024  	FUNCTION(qdss),
b915395c9e0436 Danila Tikhonov 2023-03-12  1025  	FUNCTION(qlink_enable),
b915395c9e0436 Danila Tikhonov 2023-03-12  1026  	FUNCTION(qlink_request),
b915395c9e0436 Danila Tikhonov 2023-03-12  1027  	FUNCTION(qua_mi2s),
b915395c9e0436 Danila Tikhonov 2023-03-12  1028  	FUNCTION(qup00),
b915395c9e0436 Danila Tikhonov 2023-03-12  1029  	FUNCTION(qup01),
b915395c9e0436 Danila Tikhonov 2023-03-12  1030  	FUNCTION(qup02),
b915395c9e0436 Danila Tikhonov 2023-03-12  1031  	FUNCTION(qup03),
b915395c9e0436 Danila Tikhonov 2023-03-12  1032  	FUNCTION(qup04),
b915395c9e0436 Danila Tikhonov 2023-03-12  1033  	FUNCTION(qup10),
b915395c9e0436 Danila Tikhonov 2023-03-12  1034  	FUNCTION(qup11),
b915395c9e0436 Danila Tikhonov 2023-03-12  1035  	FUNCTION(qup12),
b915395c9e0436 Danila Tikhonov 2023-03-12  1036  	FUNCTION(qup13),
b915395c9e0436 Danila Tikhonov 2023-03-12  1037  	FUNCTION(qup14),
b915395c9e0436 Danila Tikhonov 2023-03-12  1038  	FUNCTION(qup15),
b915395c9e0436 Danila Tikhonov 2023-03-12  1039  	FUNCTION(sd_write),
b915395c9e0436 Danila Tikhonov 2023-03-12  1040  	FUNCTION(sdc40),
b915395c9e0436 Danila Tikhonov 2023-03-12  1041  	FUNCTION(sdc41),
b915395c9e0436 Danila Tikhonov 2023-03-12  1042  	FUNCTION(sdc42),
b915395c9e0436 Danila Tikhonov 2023-03-12  1043  	FUNCTION(sdc43),
b915395c9e0436 Danila Tikhonov 2023-03-12  1044  	FUNCTION(sdc4_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1045  	FUNCTION(sdc4_cmd),
b915395c9e0436 Danila Tikhonov 2023-03-12  1046  	FUNCTION(sec_mi2s),
b915395c9e0436 Danila Tikhonov 2023-03-12  1047  	FUNCTION(ter_mi2s),
b915395c9e0436 Danila Tikhonov 2023-03-12  1048  	FUNCTION(tgu_ch0),
b915395c9e0436 Danila Tikhonov 2023-03-12  1049  	FUNCTION(tgu_ch1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1050  	FUNCTION(tgu_ch2),
b915395c9e0436 Danila Tikhonov 2023-03-12  1051  	FUNCTION(tgu_ch3),
b915395c9e0436 Danila Tikhonov 2023-03-12  1052  	FUNCTION(tsif1_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1053  	FUNCTION(tsif1_data),
b915395c9e0436 Danila Tikhonov 2023-03-12  1054  	FUNCTION(tsif1_en),
b915395c9e0436 Danila Tikhonov 2023-03-12  1055  	FUNCTION(tsif1_error),
b915395c9e0436 Danila Tikhonov 2023-03-12  1056  	FUNCTION(tsif1_sync),
b915395c9e0436 Danila Tikhonov 2023-03-12  1057  	FUNCTION(tsif2_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1058  	FUNCTION(tsif2_data),
b915395c9e0436 Danila Tikhonov 2023-03-12  1059  	FUNCTION(tsif2_en),
b915395c9e0436 Danila Tikhonov 2023-03-12  1060  	FUNCTION(tsif2_error),
b915395c9e0436 Danila Tikhonov 2023-03-12  1061  	FUNCTION(tsif2_sync),
b915395c9e0436 Danila Tikhonov 2023-03-12  1062  	FUNCTION(uim1_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1063  	FUNCTION(uim1_data),
b915395c9e0436 Danila Tikhonov 2023-03-12  1064  	FUNCTION(uim1_present),
b915395c9e0436 Danila Tikhonov 2023-03-12  1065  	FUNCTION(uim1_reset),
b915395c9e0436 Danila Tikhonov 2023-03-12  1066  	FUNCTION(uim2_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1067  	FUNCTION(uim2_data),
b915395c9e0436 Danila Tikhonov 2023-03-12  1068  	FUNCTION(uim2_present),
b915395c9e0436 Danila Tikhonov 2023-03-12  1069  	FUNCTION(uim2_reset),
b915395c9e0436 Danila Tikhonov 2023-03-12  1070  	FUNCTION(uim_batt),
b915395c9e0436 Danila Tikhonov 2023-03-12  1071  	FUNCTION(usb_phy),
b915395c9e0436 Danila Tikhonov 2023-03-12  1072  	FUNCTION(vfr_1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1073  	FUNCTION(vsense_trigger),
b915395c9e0436 Danila Tikhonov 2023-03-12  1074  	FUNCTION(wlan1_adc0),
b915395c9e0436 Danila Tikhonov 2023-03-12  1075  	FUNCTION(wlan1_adc1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1076  	FUNCTION(wlan2_adc0),
b915395c9e0436 Danila Tikhonov 2023-03-12  1077  	FUNCTION(wlan2_adc1),
b915395c9e0436 Danila Tikhonov 2023-03-12  1078  	FUNCTION(wsa_clk),
b915395c9e0436 Danila Tikhonov 2023-03-12  1079  	FUNCTION(wsa_data),
b915395c9e0436 Danila Tikhonov 2023-03-12  1080  };
b915395c9e0436 Danila Tikhonov 2023-03-12  1081  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests

  reply	other threads:[~2023-05-12 17:34 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-12 11:55 [PATCH 0/2] Refactor the pinctrl driver Rohit Agarwal
2023-05-12 11:55 ` [PATCH 1/2] pinctrl: qcom: Remove the msm_function struct Rohit Agarwal
2023-05-12 17:33   ` kernel test robot [this message]
2023-05-13  0:26   ` kernel test robot
2023-05-12 11:55 ` [PATCH 2/2] pinctrl: qcom: Refactor generic qcom pinctrl driver Rohit Agarwal
2023-05-12 18:15   ` kernel test robot
2023-05-12 18:26   ` kernel test robot
2023-05-13  5:39   ` kernel test robot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202305130111.lKmkjiDs-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=agross@kernel.org \
    --cc=andersson@kernel.org \
    --cc=andy.shevchenko@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=netdev@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=quic_rohiagar@quicinc.com \
    --cc=richardcochran@gmail.com \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).