public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Hugues Fruchet <hugues.fruchet@st.com>
Cc: kbuild-all@01.org, Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Alexandre Torgue <alexandre.torgue@st.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Hans Verkuil <hverkuil@xs4all.nl>,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
	Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Yannick Fertre <yannick.fertre@st.com>,
	Hugues Fruchet <hugues.fruchet@st.com>
Subject: Re: [PATCH v1 2/8] [media] stm32-dcmi: STM32 DCMI camera interface driver
Date: Thu, 30 Mar 2017 16:55:44 +0800	[thread overview]
Message-ID: <201703301611.nzJboriI%fengguang.wu@intel.com> (raw)
In-Reply-To: <1490793926-6477-3-git-send-email-hugues.fruchet@st.com>

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

Hi Hugues,

[auto build test WARNING on robh/for-next]
[also build test WARNING on v4.11-rc4 next-20170329]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Hugues-Fruchet/Add-support-for-DCMI-camera-interface-of-STMicroelectronics-STM32-SoC-series/20170330-140726
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: x86_64-allmodconfig (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

Note: it may well be a FALSE warning. FWIW you are at least aware of it now.
http://gcc.gnu.org/wiki/Better_Uninitialized_Warnings

All warnings (new ones prefixed by >>):

   drivers/media/platform/stm32/stm32-dcmi.c: In function 'dcmi_probe':
>> drivers/media/platform/stm32/stm32-dcmi.c:1386:9: warning: 'ret' may be used uninitialized in this function [-Wmaybe-uninitialized]
     return ret;
            ^~~

vim +/ret +1386 drivers/media/platform/stm32/stm32-dcmi.c

  1370		dev_info(&pdev->dev, "Probe done\n");
  1371	
  1372		platform_set_drvdata(pdev, dcmi);
  1373		return 0;
  1374	
  1375	err_reset_control_put:
  1376		reset_control_put(dcmi->rstc);
  1377	err_device_release:
  1378		video_device_release(dcmi->vdev);
  1379	err_device_unregister:
  1380		v4l2_device_unregister(&dcmi->v4l2_dev);
  1381	err_clk_unprepare:
  1382		clk_unprepare(dcmi->mclk);
  1383	err_dma_release:
  1384		dma_release_channel(dcmi->dma_chan);
  1385	
> 1386		return ret;
  1387	}
  1388	
  1389	static int dcmi_remove(struct platform_device *pdev)
  1390	{
  1391		struct stm32_dcmi *dcmi = platform_get_drvdata(pdev);
  1392	
  1393		v4l2_async_notifier_unregister(&dcmi->notifier);
  1394		v4l2_device_unregister(&dcmi->v4l2_dev);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

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

  reply	other threads:[~2017-03-30  8:56 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-29 13:25 [PATCH v1 0/8] Add support for DCMI camera interface of STMicroelectronics STM32 SoC series Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 1/8] dt-bindings: Document STM32 DCMI bindings Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 2/8] [media] stm32-dcmi: STM32 DCMI camera interface driver Hugues Fruchet
2017-03-30  8:55   ` kbuild test robot [this message]
2017-03-29 13:25 ` [PATCH v1 3/8] ARM: dts: stm32: Enable DCMI support on STM32F429 MCU Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 4/8] ARM: dts: stm32: Enable DCMI camera interface on STM32F429-EVAL board Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 5/8] ARM: dts: stm32: Enable stmpe1600 gpio expandor of " Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 6/8] ARM: dts: stm32: Enable ov2640 camera support " Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 7/8] ARM: configs: stm32: stmpe 1600 GPIO expandor Hugues Fruchet
2017-03-29 13:25 ` [PATCH v1 8/8] ARM: configs: stm32: DCMI + OV2640 camera support Hugues Fruchet

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=201703301611.nzJboriI%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=alexandre.torgue@st.com \
    --cc=benjamin.gaignard@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=hugues.fruchet@st.com \
    --cc=hverkuil@xs4all.nl \
    --cc=kbuild-all@01.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mchehab@kernel.org \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=yannick.fertre@st.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox