All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v7 3/3] drm/bridge: ti-sn65dsi86: Implement the pwm_chip
Date: Wed, 27 Oct 2021 20:42:17 +0800	[thread overview]
Message-ID: <202110272005.vSQVkj7K-lkp@intel.com> (raw)
In-Reply-To: <20211025170925.3096444-3-bjorn.andersson@linaro.org>

[-- Attachment #1: Type: text/plain, Size: 2363 bytes --]

Hi Bjorn,

I love your patch! Yet something to improve:

[auto build test ERROR on v5.15-rc6]
[also build test ERROR on next-20211026]
[cannot apply to thierry-reding-pwm/for-next]
[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/Bjorn-Andersson/pwm-Introduce-single-PWM-of_xlate-function/20211026-011243
base:    519d81956ee277b4419c723adfb154603c2565ba
config: openrisc-buildonly-randconfig-r001-20211027 (attached as .config)
compiler: or1k-linux-gcc (GCC) 11.2.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/e5ac651e6c7c724f3cd33e0fe322e714c0796348
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Bjorn-Andersson/pwm-Introduce-single-PWM-of_xlate-function/20211026-011243
        git checkout e5ac651e6c7c724f3cd33e0fe322e714c0796348
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=openrisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/gpu/drm/bridge/ti-sn65dsi86.c:218:12: error: 'ti_sn65dsi86_read_u16' defined but not used [-Werror=unused-function]
     218 | static int ti_sn65dsi86_read_u16(struct ti_sn65dsi86 *pdata,
         |            ^~~~~~~~~~~~~~~~~~~~~
   cc1: all warnings being treated as errors


vim +/ti_sn65dsi86_read_u16 +218 drivers/gpu/drm/bridge/ti-sn65dsi86.c

   217	
 > 218	static int ti_sn65dsi86_read_u16(struct ti_sn65dsi86 *pdata,
   219					 unsigned int reg, u16 *val)
   220	{
   221		u8 buf[2];
   222		int ret;
   223	
   224		ret = regmap_bulk_read(pdata->regmap, reg, buf, ARRAY_SIZE(buf));
   225		if (ret)
   226			return ret;
   227	
   228		*val = buf[0] | (buf[1] << 8);
   229	
   230		return 0;
   231	}
   232	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 32895 bytes --]

  parent reply	other threads:[~2021-10-27 12:42 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-25 17:09 [PATCH v7 1/3] pwm: Introduce single-PWM of_xlate function Bjorn Andersson
2021-10-25 17:09 ` [PATCH v7 2/3] drm/bridge: ti-sn65dsi86: Use regmap_bulk_write API Bjorn Andersson
2021-10-27  8:29   ` Robert Foss
2021-10-27 14:06     ` Bjorn Andersson
2021-10-27 14:38       ` Robert Foss
2021-10-25 17:09 ` [PATCH v7 3/3] drm/bridge: ti-sn65dsi86: Implement the pwm_chip Bjorn Andersson
2021-10-25 19:14   ` Uwe Kleine-König
2021-10-27 12:42   ` kernel test robot [this message]
2021-10-27 18:43   ` kernel test robot
2021-10-27 18:43     ` kernel test robot
2021-10-26 17:21 ` [PATCH v7 1/3] pwm: Introduce single-PWM of_xlate function Steev Klimaszewski
2021-10-27 15:06   ` Robert Foss
2021-10-30  9:27     ` Uwe Kleine-König
2021-11-02 11:37       ` Robert Foss
  -- strict thread matches above, loose matches on Subject: below --
2021-10-27 13:43 [PATCH v7 3/3] drm/bridge: ti-sn65dsi86: Implement the pwm_chip kernel test robot
2021-11-03 14:35 ` Dan Carpenter

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=202110272005.vSQVkj7K-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.