Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1297787

Re: [PATCH v3 5/5] firmware: add an extensible system data helpers

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH v3 5/5] firmware: add an extensible system data helpers
Date 2015-12-24 10:10 +0100
Message-ID <qJa4i-4Qs-19@gated-at.bofh.it> (permalink)
References <qIZiA-6pz-37@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Luis,

[auto build test WARNING on v4.4-rc6]
[also build test WARNING on next-20151223]

url:    https://github.com/0day-ci/linux/commits/Luis-R-Rodriguez/firmware_class-extensible-firmware-API/20151224-053852
reproduce: make htmldocs

All warnings (new ones prefixed by >>):

   include/linux/init.h:1: warning: no structured comments found
   kernel/sys.c:1: warning: no structured comments found
>> drivers/base/firmware_class.c:1336: warning: No description found for parameter 'sysdata'
>> drivers/base/firmware_class.c:1336: warning: Excess function parameter 'sysdata_file' description in 'release_sysdata_file'
   drivers/dma-buf/seqno-fence.c:1: warning: no structured comments found
   drivers/dma-buf/reservation.c:1: warning: no structured comments found
   include/linux/reservation.h:1: warning: no structured comments found
   include/linux/hsi/hsi.h:150: warning: Excess struct/union/enum/typedef member 'e_handler' description in 'hsi_client'
   include/linux/hsi/hsi.h:150: warning: Excess struct/union/enum/typedef member 'pclaimed' description in 'hsi_client'
   include/linux/hsi/hsi.h:150: warning: Excess struct/union/enum/typedef member 'nb' description in 'hsi_client'

vim +/sysdata +1336 drivers/base/firmware_class.c

  1320				__func__);
  1321			return -ENOMEM;
  1322		}
  1323	
  1324		ret = _request_firmware_prepare(&fw, name, device);
  1325		if (ret >= 0)
  1326			sysdata->priv = fw;
  1327	
  1328		return ret;
  1329	}
  1330	
  1331	/**
  1332	 * release_sysdata_file: - release the resource associated with the sysdata file
  1333	 * @sysdata_file: sysdata resource to release
  1334	 **/
  1335	void release_sysdata_file(const struct sysdata_file *sysdata)
> 1336	{
  1337		struct firmware *fw;
  1338	
  1339		if (sysdata) {
  1340			if (sysdata->priv) {
  1341				fw = sysdata->priv;
  1342				release_firmware(fw);
  1343			}
  1344		}

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

Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread


Thread

[PATCH v3 0/5] firmware_class: extensible firmware API "Luis R. Rodriguez" <mcgrof@do-not-panic.com> - 2015-12-23 22:40 +0100
  [PATCH v3 1/5] firmware: generalize "firmware" as "system data" helpers "Luis R. Rodriguez" <mcgrof@do-not-panic.com> - 2015-12-23 22:40 +0100
  [PATCH v3 2/5] firmware: move completing fw into a helper "Luis R. Rodriguez" <mcgrof@do-not-panic.com> - 2015-12-23 22:40 +0100
  [PATCH v3 3/5] firmware: fold successful fw read early "Luis R. Rodriguez" <mcgrof@do-not-panic.com> - 2015-12-23 22:40 +0100
  [PATCH v3 5/5] firmware: add an extensible system data helpers "Luis R. Rodriguez" <mcgrof@do-not-panic.com> - 2015-12-23 22:40 +0100
    Re: [PATCH v3 5/5] firmware: add an extensible system data helpers kbuild test robot <lkp@intel.com> - 2015-12-24 10:10 +0100

csiph-web