All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Sam Ravnborg <sam@ravnborg.org>,
	linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	Lee Jones <lee.jones@linaro.org>
Cc: kbuild-all@lists.01.org, Rich Felker <dalias@libc.org>,
	Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Daniel Vetter <daniel.vetter@ffwll.ch>,
	Gustavo A R Silva <gustavoars@kernel.org>,
	Andrzej Hajda <a.hajda@samsung.com>,
	Peter Jones <pjones@redhat.com>
Subject: Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU
Date: Mon, 7 Dec 2020 05:19:40 +0800	[thread overview]
Message-ID: <202012070518.yJA9Vbbo-lkp@intel.com> (raw)
In-Reply-To: <20201206190247.1861316-6-sam@ravnborg.org>

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

Hi Sam,

I love your patch! Yet something to improve:

[auto build test ERROR on next-20201204]
[also build test ERROR on v5.10-rc6]
[cannot apply to tegra-drm/drm/tegra/for-next soc/for-next linus/master drm/drm-next v5.10-rc6 v5.10-rc5 v5.10-rc4]
[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/Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
base:    2996bd3f6ca9ea529b40c369a94b247657abdb4d
config: sh-allmodconfig (attached as .config)
compiler: sh4-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/9c4170037512dc3810cd88f57e3c3a442304b7cf
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
        git checkout 9c4170037512dc3810cd88f57e3c3a442304b7cf
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sh 

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 >>):

   In file included from include/linux/io.h:13,
                    from include/linux/irq.h:20,
                    from include/asm-generic/hardirq.h:17,
                    from arch/sh/include/asm/hardirq.h:9,
                    from include/linux/hardirq.h:10,
                    from include/linux/interrupt.h:11,
                    from drivers/net/ethernet/xircom/xirc2ps_cs.c:74:
   drivers/net/ethernet/xircom/xirc2ps_cs.c: In function 'xirc2ps_release':
>> arch/sh/include/asm/io.h:274:29: error: void value not ignored as it ought to be
     274 | #define iounmap(addr)  do { (void)addr; } while (0)
   drivers/net/ethernet/xircom/xirc2ps_cs.c:935:4: note: in expansion of macro 'iounmap'
     935 |    iounmap(local->dingo_ccr - 0x0800);
         |    ^~~~~~~

vim +274 arch/sh/include/asm/io.h

   272	
   273	#else /* CONFIG_MMU */
 > 274	#define iounmap(addr)		do { (void)addr; } while (0)
   275	#define ioremap(offset, size)	((void __iomem *)(unsigned long)(offset))
   276	#endif /* CONFIG_MMU */
   277	

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Sam Ravnborg <sam@ravnborg.org>,
	linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	Lee Jones <lee.jones@linaro.org>
Cc: Rich Felker <dalias@libc.org>,
	kbuild-all@lists.01.org,
	Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>,
	Peter Zijlstra <peterz@infradead.org>,
	Daniel Vetter <daniel.vetter@ffwll.ch>,
	Gustavo A R Silva <gustavoars@kernel.org>,
	Andrzej Hajda <a.hajda@samsung.com>,
	Peter Jones <pjones@redhat.com>
Subject: Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU
Date: Mon, 7 Dec 2020 05:19:40 +0800	[thread overview]
Message-ID: <202012070518.yJA9Vbbo-lkp@intel.com> (raw)
In-Reply-To: <20201206190247.1861316-6-sam@ravnborg.org>

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

Hi Sam,

I love your patch! Yet something to improve:

[auto build test ERROR on next-20201204]
[also build test ERROR on v5.10-rc6]
[cannot apply to tegra-drm/drm/tegra/for-next soc/for-next linus/master drm/drm-next v5.10-rc6 v5.10-rc5 v5.10-rc4]
[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/Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
base:    2996bd3f6ca9ea529b40c369a94b247657abdb4d
config: sh-allmodconfig (attached as .config)
compiler: sh4-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/9c4170037512dc3810cd88f57e3c3a442304b7cf
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
        git checkout 9c4170037512dc3810cd88f57e3c3a442304b7cf
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sh 

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 >>):

   In file included from include/linux/io.h:13,
                    from include/linux/irq.h:20,
                    from include/asm-generic/hardirq.h:17,
                    from arch/sh/include/asm/hardirq.h:9,
                    from include/linux/hardirq.h:10,
                    from include/linux/interrupt.h:11,
                    from drivers/net/ethernet/xircom/xirc2ps_cs.c:74:
   drivers/net/ethernet/xircom/xirc2ps_cs.c: In function 'xirc2ps_release':
>> arch/sh/include/asm/io.h:274:29: error: void value not ignored as it ought to be
     274 | #define iounmap(addr)  do { (void)addr; } while (0)
   drivers/net/ethernet/xircom/xirc2ps_cs.c:935:4: note: in expansion of macro 'iounmap'
     935 |    iounmap(local->dingo_ccr - 0x0800);
         |    ^~~~~~~

vim +274 arch/sh/include/asm/io.h

   272	
   273	#else /* CONFIG_MMU */
 > 274	#define iounmap(addr)		do { (void)addr; } while (0)
   275	#define ioremap(offset, size)	((void __iomem *)(unsigned long)(offset))
   276	#endif /* CONFIG_MMU */
   277	

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

[-- Attachment #3: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU
Date: Mon, 07 Dec 2020 05:19:40 +0800	[thread overview]
Message-ID: <202012070518.yJA9Vbbo-lkp@intel.com> (raw)
In-Reply-To: <20201206190247.1861316-6-sam@ravnborg.org>

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

Hi Sam,

I love your patch! Yet something to improve:

[auto build test ERROR on next-20201204]
[also build test ERROR on v5.10-rc6]
[cannot apply to tegra-drm/drm/tegra/for-next soc/for-next linus/master drm/drm-next v5.10-rc6 v5.10-rc5 v5.10-rc4]
[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/Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
base:    2996bd3f6ca9ea529b40c369a94b247657abdb4d
config: sh-allmodconfig (attached as .config)
compiler: sh4-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/9c4170037512dc3810cd88f57e3c3a442304b7cf
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Sam-Ravnborg/drivers-video-W-1-warning-fixes/20201207-030414
        git checkout 9c4170037512dc3810cd88f57e3c3a442304b7cf
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=sh 

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 >>):

   In file included from include/linux/io.h:13,
                    from include/linux/irq.h:20,
                    from include/asm-generic/hardirq.h:17,
                    from arch/sh/include/asm/hardirq.h:9,
                    from include/linux/hardirq.h:10,
                    from include/linux/interrupt.h:11,
                    from drivers/net/ethernet/xircom/xirc2ps_cs.c:74:
   drivers/net/ethernet/xircom/xirc2ps_cs.c: In function 'xirc2ps_release':
>> arch/sh/include/asm/io.h:274:29: error: void value not ignored as it ought to be
     274 | #define iounmap(addr)  do { (void)addr; } while (0)
   drivers/net/ethernet/xircom/xirc2ps_cs.c:935:4: note: in expansion of macro 'iounmap'
     935 |    iounmap(local->dingo_ccr - 0x0800);
         |    ^~~~~~~

vim +274 arch/sh/include/asm/io.h

   272	
   273	#else /* CONFIG_MMU */
 > 274	#define iounmap(addr)		do { (void)addr; } while (0)
   275	#define ioremap(offset, size)	((void __iomem *)(unsigned long)(offset))
   276	#endif /* CONFIG_MMU */
   277	

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

  reply	other threads:[~2020-12-06 21:20 UTC|newest]

Thread overview: 108+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-06 19:02 [PATCH v3 0/13] drivers/video: W=1 warning fixes Sam Ravnborg
2020-12-06 19:02 ` Sam Ravnborg
2020-12-06 19:02 ` Sam Ravnborg
2020-12-06 19:02 ` [PATCH v3 01/13] video: fbdev: hgafb: Fix kernel-doc warnings Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:34   ` Randy Dunlap
2020-12-06 19:34     ` Randy Dunlap
2020-12-06 19:34     ` Randy Dunlap
2020-12-06 19:02 ` [PATCH v3 02/13] video: fbdev: core: Fix kernel-doc warnings in fbmon + fb_notify Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:37   ` Randy Dunlap
2020-12-06 19:37     ` Randy Dunlap
2020-12-06 19:37     ` Randy Dunlap
2020-12-06 20:52     ` Sam Ravnborg
2020-12-06 20:52       ` Sam Ravnborg
2020-12-06 20:52       ` Sam Ravnborg
2020-12-06 21:27       ` Randy Dunlap
2020-12-06 21:27         ` Randy Dunlap
2020-12-06 21:27         ` Randy Dunlap
2020-12-07  8:16     ` Thomas Zimmermann
2020-12-07  8:16       ` Thomas Zimmermann
2020-12-07  8:16       ` Thomas Zimmermann
2020-12-07 16:43       ` Randy Dunlap
2020-12-07 16:43         ` Randy Dunlap
2020-12-07 16:43         ` Randy Dunlap
2020-12-07 17:12         ` Sam Ravnborg
2020-12-07 17:12           ` Sam Ravnborg
2020-12-07 17:12           ` Sam Ravnborg
2020-12-06 19:02 ` [PATCH v3 03/13] video: fbdev: omapfb: Fix set but not used warnings in hdmi*_core Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07  8:17   ` Thomas Zimmermann
2020-12-07  8:17     ` Thomas Zimmermann
2020-12-07  8:17     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 04/13] video: fbdev: uvesafb: Fix set but not used warning Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07  8:18   ` Thomas Zimmermann
2020-12-07  8:18     ` Thomas Zimmermann
2020-12-07  8:18     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 05/13] sh: Fix set but not used warnings with !CONFIG_MMU Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 21:19   ` kernel test robot [this message]
2020-12-06 21:19     ` kernel test robot
2020-12-06 21:19     ` kernel test robot
2020-12-06 21:48     ` Sam Ravnborg
2020-12-06 21:48       ` Sam Ravnborg
2020-12-06 21:48       ` Sam Ravnborg
2020-12-06 21:49       ` Sam Ravnborg
2020-12-06 21:49         ` Sam Ravnborg
2020-12-06 21:49         ` Sam Ravnborg
2020-12-07  8:19   ` Thomas Zimmermann
2020-12-07  8:19     ` Thomas Zimmermann
2020-12-07  8:19     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 06/13] video: fbdev: sparc drivers: fix kernel-doc warnings for blank_mode Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07  8:21   ` Thomas Zimmermann
2020-12-07  8:21     ` Thomas Zimmermann
2020-12-07  8:21     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 07/13] video: fbdev: mmp: Fix kernel-doc warning for lcd_spi_write Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:48   ` Thomas Zimmermann
2020-12-07 13:48     ` Thomas Zimmermann
2020-12-07 13:48     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 08/13] video: fbdev: wmt_ge_rops: Fix function not declared warnings Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:49   ` Thomas Zimmermann
2020-12-07 13:49     ` Thomas Zimmermann
2020-12-07 13:49     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 09/13] video: fbdev: goldfishfb: Fix defined but not used warning Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:49   ` Thomas Zimmermann
2020-12-07 13:49     ` Thomas Zimmermann
2020-12-07 13:49     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 10/13] video: fbdev: gbefb: Fix set " Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:50   ` Thomas Zimmermann
2020-12-07 13:50     ` Thomas Zimmermann
2020-12-07 13:50     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 11/13] video: fbdev: efifb: Fix set but not used warning for screen_pitch Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:51   ` Thomas Zimmermann
2020-12-07 13:51     ` Thomas Zimmermann
2020-12-07 13:51     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 12/13] video: fbdev: controlfb: Fix set but not used warnings Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:52   ` Thomas Zimmermann
2020-12-07 13:52     ` Thomas Zimmermann
2020-12-07 13:52     ` Thomas Zimmermann
2020-12-06 19:02 ` [PATCH v3 13/13] video: fbdev: sis: Drop useless call to SiS_GetResInfo() Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-06 19:02   ` Sam Ravnborg
2020-12-07 13:53   ` Thomas Zimmermann
2020-12-07 13:53     ` Thomas Zimmermann
2020-12-07 13:53     ` Thomas Zimmermann
2020-12-08 18:02 ` [PATCH v3 0/13] drivers/video: W=1 warning fixes Sam Ravnborg
2020-12-08 18:02   ` Sam Ravnborg
2020-12-08 18:02   ` Sam Ravnborg

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=202012070518.yJA9Vbbo-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=a.hajda@samsung.com \
    --cc=dalias@libc.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gustavoars@kernel.org \
    --cc=kbuild-all@lists.01.org \
    --cc=kuninori.morimoto.gx@renesas.com \
    --cc=lee.jones@linaro.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=peterz@infradead.org \
    --cc=pjones@redhat.com \
    --cc=sam@ravnborg.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.