All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v4 03/11] drm/bridge: dw-hdmi: Plug atomic state hooks to the default implementation
Date: Sun, 09 Feb 2020 16:51:12 +0800	[thread overview]
Message-ID: <202002091619.XZYbfDK5%lkp@intel.com> (raw)
In-Reply-To: <20200206191834.6125-4-narmstrong@baylibre.com>

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

Hi Neil,

I love your patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.5 next-20200207]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Neil-Armstrong/drm-bridge-dw-hdmi-implement-bus-format-negotiation-and-YUV420-support/20200209-150729
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git d4f309ca411887cd61ea389c7abfb70c2eb1e532
config: openrisc-randconfig-a001-20200209 (attached as .config)
compiler: or1k-linux-gcc (GCC) 9.2.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=9.2.0 make.cross ARCH=openrisc 

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

All errors (new ones prefixed by >>):

>> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2497:3: error: 'const struct drm_bridge_funcs' has no member named 'atomic_duplicate_state'
    2497 |  .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
         |   ^~~~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2497:28: error: 'drm_atomic_helper_bridge_duplicate_state' undeclared here (not in a function); did you mean 'drm_atomic_helper_plane_duplicate_state'?
    2497 |  .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
         |                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         |                            drm_atomic_helper_plane_duplicate_state
>> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2498:3: error: 'const struct drm_bridge_funcs' has no member named 'atomic_destroy_state'
    2498 |  .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
         |   ^~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2498:26: error: 'drm_atomic_helper_bridge_destroy_state' undeclared here (not in a function); did you mean 'drm_atomic_helper_plane_destroy_state'?
    2498 |  .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
         |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         |                          drm_atomic_helper_plane_destroy_state
>> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2499:3: error: 'const struct drm_bridge_funcs' has no member named 'atomic_reset'
    2499 |  .atomic_reset = drm_atomic_helper_bridge_reset,
         |   ^~~~~~~~~~~~
   drivers/gpu/drm/bridge/synopsys/dw-hdmi.c:2499:18: error: 'drm_atomic_helper_bridge_reset' undeclared here (not in a function); did you mean 'drm_atomic_helper_plane_reset'?
    2499 |  .atomic_reset = drm_atomic_helper_bridge_reset,
         |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         |                  drm_atomic_helper_plane_reset

vim +2497 drivers/gpu/drm/bridge/synopsys/dw-hdmi.c

  2495	
  2496	static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
> 2497		.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
> 2498		.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
> 2499		.atomic_reset = drm_atomic_helper_bridge_reset,
  2500		.attach = dw_hdmi_bridge_attach,
  2501		.detach = dw_hdmi_bridge_detach,
  2502		.enable = dw_hdmi_bridge_enable,
  2503		.disable = dw_hdmi_bridge_disable,
  2504		.mode_set = dw_hdmi_bridge_mode_set,
  2505		.mode_valid = dw_hdmi_bridge_mode_valid,
  2506	};
  2507	

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

  parent reply	other threads:[~2020-02-09  8:51 UTC|newest]

Thread overview: 128+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-06 19:18 [PATCH v4 00/11] drm/bridge: dw-hdmi: implement bus-format negotiation and YUV420 support Neil Armstrong
2020-02-06 19:18 ` Neil Armstrong
2020-02-06 19:18 ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 01/11] drm/bridge: dw-hdmi: set mtmdsclock for deep color Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-03-02  9:05   ` Laurent Pinchart
2020-03-02  9:05     ` Laurent Pinchart
2020-03-02  9:05     ` Laurent Pinchart
2020-03-02  9:21     ` Neil Armstrong
2020-03-02  9:21       ` Neil Armstrong
2020-03-02  9:21       ` Neil Armstrong
2020-03-02 15:54     ` Neil Armstrong
2020-03-02 15:54       ` Neil Armstrong
2020-03-02 15:54       ` Neil Armstrong
2020-03-02 16:01       ` Laurent Pinchart
2020-03-02 16:01         ` Laurent Pinchart
2020-03-02 16:01         ` Laurent Pinchart
2020-02-06 19:18 ` [PATCH v4 02/11] drm/bridge: dw-hdmi: add max bpc connector property Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-17  6:38   ` Jernej Škrabec
2020-02-17  6:38     ` Jernej Škrabec
2020-02-17  6:38     ` Jernej Škrabec
2020-02-21  8:50     ` Neil Armstrong
2020-02-21  8:50       ` Neil Armstrong
2020-02-21  8:50       ` Neil Armstrong
2020-03-02  9:18       ` Laurent Pinchart
2020-03-02  9:18         ` Laurent Pinchart
2020-03-02  9:18         ` Laurent Pinchart
2020-03-02 15:55         ` Neil Armstrong
2020-03-02 15:55           ` Neil Armstrong
2020-03-02 15:55           ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 03/11] drm/bridge: dw-hdmi: Plug atomic state hooks to the default implementation Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-07 10:57   ` Boris Brezillon
2020-02-07 10:57     ` Boris Brezillon
2020-02-07 10:57     ` Boris Brezillon
2020-02-09  8:51   ` kbuild test robot [this message]
2020-02-09  9:08   ` kbuild test robot
2020-03-02  9:56   ` Laurent Pinchart
2020-03-02  9:56     ` Laurent Pinchart
2020-03-02  9:56     ` Laurent Pinchart
2020-03-02 15:55     ` Neil Armstrong
2020-03-02 15:55       ` Neil Armstrong
2020-03-02 15:55       ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 04/11] drm/bridge: synopsys: dw-hdmi: add bus format negociation Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-07 11:02   ` Boris Brezillon
2020-02-07 11:02     ` Boris Brezillon
2020-02-07 11:02     ` Boris Brezillon
2020-02-07 13:36     ` Neil Armstrong
2020-02-07 13:36       ` Neil Armstrong
2020-02-07 13:36       ` Neil Armstrong
2020-02-09  9:32   ` kbuild test robot
2020-02-09 10:01   ` kbuild test robot
2020-02-29  7:42   ` Jernej Škrabec
2020-02-29  7:42     ` Jernej Škrabec
2020-02-29  7:42     ` Jernej Škrabec
2020-02-29 10:09     ` Jonas Karlman
2020-02-29 10:09       ` Jonas Karlman
2020-02-29 10:09       ` Jonas Karlman
2020-02-29 11:07       ` Jernej Škrabec
2020-02-29 11:07         ` Jernej Škrabec
2020-02-29 11:07         ` Jernej Škrabec
2020-02-29 12:15         ` Jonas Karlman
2020-02-29 12:15           ` Jonas Karlman
2020-02-29 12:15           ` Jonas Karlman
2020-02-29 14:42           ` Jernej Škrabec
2020-02-29 14:42             ` Jernej Škrabec
2020-02-29 14:42             ` Jernej Škrabec
2020-03-02  8:08       ` Neil Armstrong
2020-03-02  8:08         ` Neil Armstrong
2020-03-02  8:08         ` Neil Armstrong
2020-03-02  8:04     ` Neil Armstrong
2020-03-02  8:04       ` Neil Armstrong
2020-03-02  8:04       ` Neil Armstrong
2020-03-02 10:18   ` Laurent Pinchart
2020-03-02 10:18     ` Laurent Pinchart
2020-03-02 10:18     ` Laurent Pinchart
2020-03-02 15:57     ` Neil Armstrong
2020-03-02 15:57       ` Neil Armstrong
2020-03-02 15:57       ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 05/11] drm/bridge: synopsys: dw-hdmi: allow ycbcr420 modes for >= 0x200a Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-07 13:38   ` Neil Armstrong
2020-02-07 13:38     ` Neil Armstrong
2020-02-07 13:38     ` Neil Armstrong
2020-03-02 10:03   ` Laurent Pinchart
2020-03-02 10:03     ` Laurent Pinchart
2020-03-02 10:03     ` Laurent Pinchart
2020-03-02 15:58     ` Neil Armstrong
2020-03-02 15:58       ` Neil Armstrong
2020-03-02 15:58       ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 06/11] drm/meson: venc: make drm_display_mode const Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-07 13:39   ` Neil Armstrong
2020-02-07 13:39     ` Neil Armstrong
2020-02-07 13:39     ` Neil Armstrong
2020-03-02  9:59   ` Laurent Pinchart
2020-03-02  9:59     ` Laurent Pinchart
2020-03-02  9:59     ` Laurent Pinchart
2020-02-06 19:18 ` [PATCH v4 07/11] drm/meson: meson_dw_hdmi: add bridge and switch to drm_bridge_funcs Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-07 14:57   ` Boris Brezillon
2020-02-07 14:57     ` Boris Brezillon
2020-02-07 14:57     ` Boris Brezillon
2020-02-07 15:36     ` Neil Armstrong
2020-02-07 15:36       ` Neil Armstrong
2020-02-07 15:36       ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 08/11] drm/meson: dw-hdmi: stop enforcing input_bus_format Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 09/11] drm/meson: venc: add support for YUV420 setup Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 10/11] drm/meson: vclk: " Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18 ` [PATCH v4 11/11] drm/meson: Add YUV420 output support Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-06 19:18   ` Neil Armstrong
2020-02-09 13:06   ` kbuild 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=202002091619.XZYbfDK5%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.