linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: info@are.ma
Cc: kbuild-all@01.org, linux-media@vger.kernel.org, "Буди Романто,
	AreMa Inc" <knightrider@are.ma>,
	linux-kernel@vger.kernel.org, crope@iki.fi, m.chehab@samsung.com,
	mchehab@osg.samsung.com, hdegoede@redhat.com,
	laurent.pinchart@ideasonboard.com, mkrufky@linuxtv.org,
	sylvester.nawrocki@gmail.com, g.liakhovetski@gmx.de,
	peter.senna@gmail.com
Subject: Re: [media 5/6] PCIE bridge driver for PT3 & PX-Q3PE
Date: Tue, 5 Apr 2016 05:48:14 +0800	[thread overview]
Message-ID: <201604050502.rjcZ2roU%fengguang.wu@intel.com> (raw)
In-Reply-To: <f4f7b81fb6a0c9d4e3ebe9ec46495285136df39d.1459787898.git.knightrider@are.ma>

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

Hi Буди,

[auto build test WARNING on linuxtv-media/master]
[also build test WARNING on v4.6-rc2 next-20160404]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/info-are-ma/DVB-driver-for-Earthsoft-PT3-PLEX-PX-Q3PE-ISDB-S-T-PCIE-cards-PX-BCUD-ISDB-S-USB-dongle/20160405-011100
base:   git://linuxtv.org/media_tree.git master
config: s390-allmodconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=s390 

All warnings (new ones prefixed by >>):

   drivers/media/pci/ptx/pxq3pe.c: In function 'pxq3pe_xfr':
>> drivers/media/pci/ptx/pxq3pe.c:257:1: warning: 'pxq3pe_xfr' uses dynamic stack allocation
    }
    ^

vim +/pxq3pe_xfr +257 drivers/media/pci/ptx/pxq3pe.c

   241				regadr	= msg->len ? *msg->buf : 0,
   242				mode	= slvadr == PXQ3PE_I2C_ADR_GPIO	? PXQ3PE_MOD_GPIO
   243					: sz > 1 && i == sz - 2		? PXQ3PE_MOD_STAT
   244					: PXQ3PE_MOD_TUNER;
   245	
   246			mutex_lock(&card->lock);
   247			if (msg->flags & I2C_M_RD) {
   248				u8 buf[sz];
   249	
   250				ret = pxq3pe_r(card, slvadr, regadr, buf, msg->len, mode);
   251				memcpy(msg->buf, buf, msg->len);
   252			} else
   253				ret = pxq3pe_w(card, slvadr, regadr, msg->buf, msg->len, mode);
   254			mutex_unlock(&card->lock);
   255		}
   256		return i;
 > 257	}
   258	
   259	bool pxq3pe_w_gpio2(struct ptx_card *card, u8 dat, u8 mask)
   260	{
   261		u8 val;
   262	
   263		return	pxq3pe_r(card, PXQ3PE_I2C_ADR_GPIO, 0xB, &val, 1, PXQ3PE_MOD_GPIO)	&&
   264			(val = (mask & dat) | (val & ~mask), pxq3pe_w(card, PXQ3PE_I2C_ADR_GPIO, 0xB, &val, 1, PXQ3PE_MOD_GPIO));
   265	}

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

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 40572 bytes --]

  parent reply	other threads:[~2016-04-04 21:49 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-04 17:03 [media 0/6] DVB driver for Earthsoft PT3, PLEX PX-Q3PE ISDB-S/T PCIE cards & PX-BCUD ISDB-S USB dongle info
2016-04-04 17:04 ` [media 1/6] Raise adapter number limit info
2016-04-04 17:04 ` [media 2/6] drop backstabbing drivers info
2016-04-04 17:04 ` [media 3/6] Demodulator for Earthsoft PT3, PLEX PX-Q3PE ISDB-S/T PCIE cards & PX-BCUD ISDB-S USB dongle info
2016-04-04 17:04 ` [media 4/6] Tuners " info
2016-04-04 17:04 ` [media 5/6] PCIE bridge driver for PT3 & PX-Q3PE info
2016-04-04 17:30   ` kbuild test robot
2016-04-04 21:48   ` kbuild test robot [this message]
2016-04-04 22:20   ` kbuild test robot
2016-04-04 17:04 ` [media 6/6] Bridge driver for PLEX PX-BCUD ISDB-S USB dongle info

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=201604050502.rjcZ2roU%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=crope@iki.fi \
    --cc=g.liakhovetski@gmx.de \
    --cc=hdegoede@redhat.com \
    --cc=info@are.ma \
    --cc=kbuild-all@01.org \
    --cc=knightrider@are.ma \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=m.chehab@samsung.com \
    --cc=mchehab@osg.samsung.com \
    --cc=mkrufky@linuxtv.org \
    --cc=peter.senna@gmail.com \
    --cc=sylvester.nawrocki@gmail.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;
as well as URLs for NNTP newsgroup(s).