From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC 4/8] phy: dwc: Add Synopsys DesignWare HDMI RX PHYs e405 and e406 Driver
Date: Thu, 29 Apr 2021 02:46:44 +0800 [thread overview]
Message-ID: <202104290210.X32xoui6-lkp@intel.com> (raw)
In-Reply-To: <9cbe84140e8977ee43e43acd74ebd2cc622f09e8.1618937288.git.nelson.costa@synopsys.com>
[-- Attachment #1: Type: text/plain, Size: 2708 bytes --]
Hi Nelson,
[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on linuxtv-media/master]
[also build test WARNING on linux/master linus/master v5.12 next-20210428]
[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]
url: https://github.com/0day-ci/linux/commits/Nelson-Costa/Add-Synopsys-DesignWare-HDMI-RX-Controller-and-PHY-drivers/20210428-232828
base: git://linuxtv.org/media_tree.git master
config: ia64-allmodconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 9.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://github.com/0day-ci/linux/commit/616184ab2857513c2a560411bc86d51aeda69c92
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Nelson-Costa/Add-Synopsys-DesignWare-HDMI-RX-Controller-and-PHY-drivers/20210428-232828
git checkout 616184ab2857513c2a560411bc86d51aeda69c92
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=ia64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/phy/dwc/phy-dw-hdmi-e406.c:139:6: warning: no previous prototype for 'dw_phy_eq_settings' [-Wmissing-prototypes]
139 | void dw_phy_eq_settings(struct dw_phy_dev *dw_dev, u16 ch0_setting,
| ^~~~~~~~~~~~~~~~~~
vim +/dw_phy_eq_settings +139 drivers/phy/dwc/phy-dw-hdmi-e406.c
138
> 139 void dw_phy_eq_settings(struct dw_phy_dev *dw_dev, u16 ch0_setting,
140 u16 ch1_setting, u16 ch2_setting)
141 {
142 dw_phy_write(dw_dev,
143 (DW_CHX_EQ_CTRL3_MASK |
144 (ch0_setting & DW_PHY_CH0_EXT_EQ_SET_MASK)),
145 DW_PHY_CH0_EQ_CTRL3);
146 dw_phy_write(dw_dev,
147 (DW_CHX_EQ_CTRL3_MASK |
148 (ch1_setting & DW_PHY_CH1_EXT_EQ_SET_MASK)),
149 DW_PHY_CH1_EQ_CTRL3);
150 dw_phy_write(dw_dev,
151 (DW_CHX_EQ_CTRL3_MASK |
152 (ch2_setting & DW_PHY_CH2_EXT_EQ_SET_MASK)),
153 DW_PHY_CH2_EQ_CTRL3);
154 dw_phy_write(dw_dev, DW_PHY_EQ_EN_OVR_EN, DW_PHY_MAINFSM_OVR2);
155
156 dw_phy_eq_auto_calib(dw_dev);
157 }
158
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 63947 bytes --]
next prev parent reply other threads:[~2021-04-28 18:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-28 15:25 [RFC 0/8] Add Synopsys DesignWare HDMI RX Controller and PHY drivers Nelson Costa
2021-04-28 15:25 ` [RFC 1/8] dt-bindings: media: Document Synopsys DesignWare HDMI RX Nelson Costa
2021-04-28 22:01 ` Laurent Pinchart
2021-04-29 18:03 ` Nelson Costa
2021-04-28 15:25 ` [RFC 2/8] MAINTAINERS: Add entry for Synopsys DesignWare HDMI drivers Nelson Costa
2021-04-28 15:25 ` [RFC 3/8] phy: Add PHY standard HDMI opts to the PHY API Nelson Costa
2021-04-28 15:25 ` [RFC 4/8] phy: dwc: Add Synopsys DesignWare HDMI RX PHYs e405 and e406 Driver Nelson Costa
2021-04-28 18:46 ` kernel test robot [this message]
2021-04-28 15:25 ` [RFC 5/8] media: platform: Add Synopsys DesignWare HDMI RX Controller Driver Nelson Costa
2021-04-28 15:25 ` [RFC 6/8] media: v4l2-dv-timings: Add more CEA/CTA-861 video format timings Nelson Costa
2021-04-28 21:00 ` kernel test robot
2021-04-28 23:13 ` kernel test robot
2021-04-28 15:25 ` [RFC 7/8] media: dwc: dw-hdmi-rx: Add support for Aspect Ratio Nelson Costa
2021-04-28 15:25 ` [RFC 8/8] media: dwc: dw-hdmi-rx: Add support for CEC Nelson Costa
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=202104290210.X32xoui6-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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 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.