All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3 2/3] drm: bridge: add it66121 driver
Date: Tue, 13 Apr 2021 11:02:30 +0800	[thread overview]
Message-ID: <202104131040.8vVHB93N-lkp@intel.com> (raw)
In-Reply-To: <20210412154648.3719153-3-narmstrong@baylibre.com>

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

Hi Neil,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.12-rc7 next-20210412]
[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/Neil-Armstrong/drm-bridge-Add-it66121-driver/20210412-234852
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git d434405aaab7d0ebc516b68a8fc4100922d7f5ef
config: arc-randconfig-r024-20210413 (attached as .config)
compiler: arc-elf-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/d86794bbe14422dfc00873eacf1eaae121c34255
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Neil-Armstrong/drm-bridge-Add-it66121-driver/20210412-234852
        git checkout d86794bbe14422dfc00873eacf1eaae121c34255
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arc 

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/ite-it66121.c: In function 'it66121_hw_reset':
>> drivers/gpu/drm/bridge/ite-it66121.c:242:2: error: implicit declaration of function 'gpiod_set_value' [-Werror=implicit-function-declaration]
     242 |  gpiod_set_value(ctx->gpio_reset, 1);
         |  ^~~~~~~~~~~~~~~
   drivers/gpu/drm/bridge/ite-it66121.c: In function 'it66121_probe':
>> drivers/gpu/drm/bridge/ite-it66121.c:1016:16: error: implicit declaration of function 'FIELD_GET'; did you mean 'FOLL_GET'? [-Werror=implicit-function-declaration]
    1016 |  revision_id = FIELD_GET(IT66121_REVISION_MASK, device_ids[1]);
         |                ^~~~~~~~~
         |                FOLL_GET
   cc1: some warnings being treated as errors


vim +/gpiod_set_value +242 drivers/gpu/drm/bridge/ite-it66121.c

   239	
   240	static void it66121_hw_reset(struct it66121_ctx *ctx)
   241	{
 > 242		gpiod_set_value(ctx->gpio_reset, 1);
   243		msleep(20);
   244		gpiod_set_value(ctx->gpio_reset, 0);
   245	}
   246	

---
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: 34000 bytes --]

  reply	other threads:[~2021-04-13  3:02 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-12 15:46 [PATCH v3 0/3] drm/bridge: Add it66121 driver Neil Armstrong
2021-04-12 15:46 ` Neil Armstrong
2021-04-12 15:46 ` [PATCH v3 1/3] dt-bindings: display: bridge: add it66121 bindings Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-13 15:11   ` Rob Herring
2021-04-13 15:11     ` Rob Herring
2021-04-13 16:03   ` Laurent Pinchart
2021-04-13 16:03     ` Laurent Pinchart
2021-04-14  8:14     ` Neil Armstrong
2021-04-14  8:14       ` Neil Armstrong
2021-04-13 18:09   ` Paul Cercueil
2021-04-13 18:09     ` Paul Cercueil
2021-04-13 20:17     ` Laurent Pinchart
2021-04-13 20:17       ` Laurent Pinchart
2021-04-12 15:46 ` [PATCH v3 2/3] drm: bridge: add it66121 driver Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-13  3:02   ` kernel test robot [this message]
2021-04-13 20:21   ` Robert Foss
2021-04-13 20:21     ` Robert Foss
2021-04-14  6:13     ` Neil Armstrong
2021-04-14  6:13       ` Neil Armstrong
2021-04-14  8:06       ` Robert Foss
2021-04-14  8:06         ` Robert Foss
2021-04-14  8:08         ` Neil Armstrong
2021-04-14  8:08           ` Neil Armstrong
2021-04-14  8:16           ` Laurent Pinchart
2021-04-14  8:16             ` Laurent Pinchart
2021-04-14 15:37             ` Neil Armstrong
2021-04-14 15:37               ` Neil Armstrong
2021-04-13 20:56   ` Paul Cercueil
2021-04-13 20:56     ` Paul Cercueil
2021-04-14  6:17     ` Neil Armstrong
2021-04-14  6:17       ` Neil Armstrong
2021-04-14  8:15       ` Paul Cercueil
2021-04-14  8:15         ` Paul Cercueil
2021-04-14 17:35       ` Paul Cercueil
2021-04-14 17:35         ` Paul Cercueil
2021-04-15  8:54         ` Neil Armstrong
2021-04-15  8:54           ` Neil Armstrong
2021-04-12 15:46 ` [PATCH v3 3/3] MAINTAINERS: add it66121 HDMI bridge driver entry Neil Armstrong
2021-04-12 15:46   ` Neil Armstrong
2021-04-12 15:47   ` Neil Armstrong
2021-04-12 15:47     ` Neil Armstrong
2021-04-13 17:53     ` Robert Foss
2021-04-13 17:53       ` Robert Foss

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=202104131040.8vVHB93N-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.