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 v4 03/10] drm: rcar-du: Convert to the new VSP atomic API
Date: Fri, 15 Jan 2021 21:29:57 +0800	[thread overview]
Message-ID: <202101152133.EexM8ckN-lkp@intel.com> (raw)
In-Reply-To: <20210114162255.705868-4-kieran.bingham+renesas@ideasonboard.com>

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

Hi Kieran,

I love your patch! Yet something to improve:

[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on tegra-drm/drm/tegra/for-next drm-tip/drm-tip pinchartl-media/drm/du/next v5.11-rc3 next-20210115]
[cannot apply to linuxtv-media/master drm-exynos/exynos-drm-next drm/drm-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/Kieran-Bingham/drm-rcar-du-Rework-CRTC-and-groups-for-atomic-commits/20210115-112237
base:   git://anongit.freedesktop.org/drm-intel for-linux-next
config: arm-defconfig (attached as .config)
compiler: arm-linux-gnueabi-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/54bcb2a6860ae79fb060b013775d9184b312103d
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Kieran-Bingham/drm-rcar-du-Rework-CRTC-and-groups-for-atomic-commits/20210115-112237
        git checkout 54bcb2a6860ae79fb060b013775d9184b312103d
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm 

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

All error/warnings (new ones prefixed by >>):

   In file included from drivers/gpu/drm/rcar-du/rcar_du_drv.h:21,
                    from drivers/gpu/drm/rcar-du/rcar_du_crtc.c:27:
>> drivers/gpu/drm/rcar-du/rcar_du_vsp.h:78:14: error: expected ';' before 'void'
      78 | static inlinc void rcar_du_vsp_modeset(struct rcar_du_crtc *crtc) { };
         |              ^~~~~
         |              ;
>> drivers/gpu/drm/rcar-du/rcar_du_vsp.h:78:20: warning: no previous prototype for 'rcar_du_vsp_modeset' [-Wmissing-prototypes]
      78 | static inlinc void rcar_du_vsp_modeset(struct rcar_du_crtc *crtc) { };
         |                    ^~~~~~~~~~~~~~~~~~~


vim +78 drivers/gpu/drm/rcar-du/rcar_du_vsp.h

    77	
  > 78	static inlinc void rcar_du_vsp_modeset(struct rcar_du_crtc *crtc) { };
    79	static inline void rcar_du_vsp_enable(struct rcar_du_crtc *crtc) { };
    80	static inline void rcar_du_vsp_disable(struct rcar_du_crtc *crtc) { };
    81	static inline void rcar_du_vsp_atomic_begin(struct rcar_du_crtc *crtc) { };
    82	static inline void rcar_du_vsp_atomic_flush(struct rcar_du_crtc *crtc) { };
    83	static inline int rcar_du_vsp_map_fb(struct rcar_du_vsp *vsp,
    84					     struct drm_framebuffer *fb,
    85					     struct sg_table sg_tables[3])
    86	{
    87		return -ENXIO;
    88	}
    89	static inline void rcar_du_vsp_unmap_fb(struct rcar_du_vsp *vsp,
    90						struct drm_framebuffer *fb,
    91						struct sg_table sg_tables[3])
    92	{
    93	}
    94	#endif
    95	

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

  reply	other threads:[~2021-01-15 13:29 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-14 16:22 [PATCH v4 00/10] drm: rcar-du: Rework CRTC and groups for atomic commits Kieran Bingham
2021-01-14 16:22 ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 01/10] media: vsp1: drm: Split vsp1_du_setup_lif() Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 02/10] media: vsp1: drm: Don't configure hardware when the pipeline is disabled Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 03/10] drm: rcar-du: Convert to the new VSP atomic API Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-15 13:29   ` kernel test robot [this message]
2021-01-16  0:47   ` kernel test robot
2021-01-14 16:22 ` [PATCH v4 04/10] media: vsp1: drm: Remove vsp1_du_setup_lif() Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 05/10] drm: rcar-du: Handle CRTC standby from commit tail handler Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 06/10] drm: rcar-du: Handle CRTC configuration " Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 07/10] drm: rcar-du: Provide for_each_group helper Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 08/10] drm: rcar-du: Create a group state object Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 09/10] drm: rcar-du: Perform group setup from the atomic tail handler Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham
2021-01-14 16:22 ` [PATCH v4 10/10] drm: rcar-du: Centralise routing configuration in commit " Kieran Bingham
2021-01-14 16:22   ` Kieran Bingham

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=202101152133.EexM8ckN-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.