From: kernel test robot <lkp@intel.com>
To: Bjorn Andersson <andersson@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH 5/7] phy: qcom-qmp-combo: Introduce drm_bridge
Date: Tue, 2 May 2023 03:32:51 +0800 [thread overview]
Message-ID: <202305020313.fewkOUd1-lkp@intel.com> (raw)
In-Reply-To: <20230425034010.3789376-6-quic_bjorande@quicinc.com>
Hi Bjorn,
kernel test robot noticed the following build errors:
[auto build test ERROR on robh/for-next]
[also build test ERROR on linus/master v6.3 next-20230428]
[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/Bjorn-Andersson/dt-bindings-phy-qcom-sc8280xp-qmp-usb43dp-Add-ports-and-orientation-switch/20230425-114219
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20230425034010.3789376-6-quic_bjorande%40quicinc.com
patch subject: [PATCH 5/7] phy: qcom-qmp-combo: Introduce drm_bridge
config: arm-randconfig-c031-20230430 (https://download.01.org/0day-ci/archive/20230502/202305020313.fewkOUd1-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 12.1.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://github.com/intel-lab-lkp/linux/commit/9d1c54037e7501c68b3ad3347abda7f8ca0d4a7a
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Bjorn-Andersson/dt-bindings-phy-qcom-sc8280xp-qmp-usb43dp-Add-ports-and-orientation-switch/20230425-114219
git checkout 9d1c54037e7501c68b3ad3347abda7f8ca0d4a7a
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash
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/202305020313.fewkOUd1-lkp@intel.com/
All errors (new ones prefixed by >>):
arm-linux-gnueabi-ld: drivers/phy/qualcomm/phy-qcom-qmp-combo.o: in function `qmp_combo_bridge_attach':
>> drivers/phy/qualcomm/phy-qcom-qmp-combo.c:3227: undefined reference to `devm_drm_of_get_bridge'
>> arm-linux-gnueabi-ld: drivers/phy/qualcomm/phy-qcom-qmp-combo.c:3231: undefined reference to `drm_bridge_attach'
arm-linux-gnueabi-ld: drivers/phy/qualcomm/phy-qcom-qmp-combo.o: in function `qmp_combo_dp_register_bridge':
>> drivers/phy/qualcomm/phy-qcom-qmp-combo.c:3243: undefined reference to `devm_drm_bridge_add'
vim +3227 drivers/phy/qualcomm/phy-qcom-qmp-combo.c
3217
3218 static int qmp_combo_bridge_attach(struct drm_bridge *bridge,
3219 enum drm_bridge_attach_flags flags)
3220 {
3221 struct qmp_combo *qmp = container_of(bridge, struct qmp_combo, bridge);
3222 struct drm_bridge *next_bridge;
3223
3224 if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR))
3225 return -EINVAL;
3226
> 3227 next_bridge = devm_drm_of_get_bridge(qmp->dev, qmp->dev->of_node, 0, 0);
3228 if (IS_ERR(next_bridge))
3229 return dev_err_probe(qmp->dev, PTR_ERR(next_bridge), "failed to acquire drm_bridge\n");
3230
> 3231 return drm_bridge_attach(bridge->encoder, next_bridge, bridge, DRM_BRIDGE_ATTACH_NO_CONNECTOR);
3232 }
3233
3234 static const struct drm_bridge_funcs qmp_combo_bridge_funcs = {
3235 .attach = qmp_combo_bridge_attach,
3236 };
3237
3238 static int qmp_combo_dp_register_bridge(struct qmp_combo *qmp)
3239 {
3240 qmp->bridge.funcs = &qmp_combo_bridge_funcs;
3241 qmp->bridge.of_node = qmp->dev->of_node;
3242
> 3243 return devm_drm_bridge_add(qmp->dev, &qmp->bridge);
3244 }
3245
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-05-01 19:33 UTC|newest]
Thread overview: 90+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-25 3:40 [PATCH 0/7] phy: qcom-qmp-combo: Support orientation switching Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-25 3:40 ` [PATCH 1/7] dt-bindings: phy: qcom,sc8280xp-qmp-usb43dp: Add ports and orientation-switch Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-25 18:58 ` Rob Herring
2023-04-25 18:58 ` Rob Herring
2023-04-26 10:21 ` Bryan O'Donoghue
2023-04-26 10:21 ` Bryan O'Donoghue
2023-04-27 19:52 ` Bjorn Andersson
2023-04-27 19:52 ` Bjorn Andersson
2023-05-03 20:37 ` Bryan O'Donoghue
2023-05-03 20:37 ` Bryan O'Donoghue
2023-05-04 13:50 ` Neil Armstrong
2023-05-04 13:50 ` Neil Armstrong
2023-05-04 14:51 ` Bjorn Andersson
2023-05-04 14:51 ` Bjorn Andersson
2023-04-25 3:40 ` [PATCH 2/7] phy: qcom-qmp-combo: Move phy_mutex out of com_init/exit Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-05-02 10:43 ` Johan Hovold
2023-05-02 10:43 ` Johan Hovold
2023-04-25 3:40 ` [PATCH 3/7] phy: qcom-qmp-combo: Introduce orientation variable Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-27 13:13 ` Neil Armstrong
2023-04-27 13:13 ` Neil Armstrong
2023-05-02 11:48 ` Johan Hovold
2023-05-02 11:48 ` Johan Hovold
2023-05-04 3:29 ` Bjorn Andersson
2023-05-04 3:29 ` Bjorn Andersson
2023-05-04 13:44 ` Johan Hovold
2023-05-04 13:44 ` Johan Hovold
2023-05-04 15:16 ` Bjorn Andersson
2023-05-04 15:16 ` Bjorn Andersson
2023-05-04 15:41 ` Johan Hovold
2023-05-04 15:41 ` Johan Hovold
2023-04-25 3:40 ` [PATCH 4/7] phy: qcom-qmp-combo: Introduce orientation switching Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-27 13:18 ` Neil Armstrong
2023-04-27 13:18 ` Neil Armstrong
2023-05-02 11:56 ` Johan Hovold
2023-05-02 11:56 ` Johan Hovold
2023-04-25 3:40 ` [PATCH 5/7] phy: qcom-qmp-combo: Introduce drm_bridge Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-26 10:33 ` Bryan O'Donoghue
2023-04-26 10:33 ` Bryan O'Donoghue
2023-04-27 13:11 ` Neil Armstrong
2023-04-27 13:11 ` Neil Armstrong
2023-04-27 18:00 ` Dmitry Baryshkov
2023-04-27 18:00 ` Dmitry Baryshkov
2023-04-27 19:55 ` Bjorn Andersson
2023-04-27 19:55 ` Bjorn Andersson
2023-04-28 6:55 ` Bryan O'Donoghue
2023-04-28 6:55 ` Bryan O'Donoghue
2023-05-01 19:32 ` kernel test robot [this message]
2023-05-02 5:16 ` kernel test robot
2023-05-02 12:05 ` Johan Hovold
2023-05-02 12:05 ` Johan Hovold
2023-05-04 3:13 ` Bjorn Andersson
2023-05-04 3:13 ` Bjorn Andersson
2023-05-04 8:38 ` Johan Hovold
2023-05-04 8:38 ` Johan Hovold
2023-05-04 8:55 ` Dmitry Baryshkov
2023-05-04 8:55 ` Dmitry Baryshkov
2023-05-04 15:49 ` Bjorn Andersson
2023-05-04 15:49 ` Bjorn Andersson
2023-04-25 3:40 ` [PATCH 6/7] arm64: dts: qcom: sc8280xp-crd: Add QMP to SuperSpeed graph Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-26 23:33 ` Konrad Dybcio
2023-04-26 23:33 ` Konrad Dybcio
2023-04-27 13:27 ` Neil Armstrong
2023-04-27 13:27 ` Neil Armstrong
2023-05-02 11:03 ` Konrad Dybcio
2023-05-02 11:03 ` Konrad Dybcio
2023-04-27 19:48 ` Bjorn Andersson
2023-04-27 19:48 ` Bjorn Andersson
2023-05-02 12:22 ` Johan Hovold
2023-05-02 12:22 ` Johan Hovold
2023-05-04 3:07 ` Bjorn Andersson
2023-05-04 3:07 ` Bjorn Andersson
2023-04-25 3:40 ` [PATCH 7/7] arm64: dts: qcom: sc8280xp-x13s: " Bjorn Andersson
2023-04-25 3:40 ` Bjorn Andersson
2023-04-25 4:58 ` [PATCH 0/7] phy: qcom-qmp-combo: Support orientation switching Steev Klimaszewski
2023-04-25 4:58 ` Steev Klimaszewski
2023-04-26 14:25 ` Abel Vesa
2023-04-26 14:25 ` Abel Vesa
2023-05-02 12:26 ` Johan Hovold
2023-05-02 12:26 ` Johan Hovold
2023-05-03 9:50 ` Neil Armstrong
2023-05-03 9:50 ` Neil Armstrong
2023-05-23 3:03 ` Bjorn Andersson
2023-05-23 3:03 ` Bjorn Andersson
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=202305020313.fewkOUd1-lkp@intel.com \
--to=lkp@intel.com \
--cc=andersson@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.