All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: kbuild-all@01.org,
	Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	Linux Media Mailing List <linux-media@vger.kernel.org>,
	Mauro Carvalho Chehab <mchehab@infradead.org>,
	Olli Salonen <olli.salonen@iki.fi>,
	Antti Palosaari <crope@iki.fi>,
	Stefan Richter <stefanr@s5r6.in-berlin.de>
Subject: Re: [PATCH] [media] dw2102: use the new USB ID Terratec Cinergy S2 macros
Date: Mon, 25 Jan 2016 23:14:09 +0800	[thread overview]
Message-ID: <201601252349.8AyQladc%fengguang.wu@intel.com> (raw)
In-Reply-To: <a561d768c13287ef156863c4ff149306844101fa.1453733377.git.mchehab@osg.samsung.com>

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

Hi Mauro,

[auto build test ERROR on linuxtv-media/master]
[also build test ERROR on v4.5-rc1 next-20160125]
[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/Mauro-Carvalho-Chehab/dw2102-use-the-new-USB-ID-Terratec-Cinergy-S2-macros/20160125-225251
base:   git://linuxtv.org/media_tree.git master
config: x86_64-rhel (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   In file included from drivers/media/usb/dvb-usb/dvb-usb.h:14:0,
                    from drivers/media/usb/dvb-usb/dw2102.h:5,
                    from drivers/media/usb/dvb-usb/dw2102.c:15:
>> drivers/media/usb/dvb-usb/dw2102.c:1705:56: error: 'USB_PID_TERRATEC_CINERGY_S2_R1' undeclared here (not in a function)
     [TERRATEC_CINERGY_S2] = {USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_S2_R1)},
                                                           ^
   include/linux/usb.h:854:16: note: in definition of macro 'USB_DEVICE'
     .idProduct = (prod)
                   ^
>> drivers/media/usb/dvb-usb/dw2102.c:1711:59: error: 'USB_PID_TERRATEC_CINERGY_S2_R2' undeclared here (not in a function)
     [TERRATEC_CINERGY_S2_R2] = {USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_S2_R2)},
                                                              ^
   include/linux/usb.h:854:16: note: in definition of macro 'USB_DEVICE'
     .idProduct = (prod)
                   ^

vim +/USB_PID_TERRATEC_CINERGY_S2_R1 +1705 drivers/media/usb/dvb-usb/dw2102.c

  1699		[CYPRESS_DW3101] = {USB_DEVICE(USB_VID_CYPRESS, USB_PID_DW3101)},
  1700		[TEVII_S630] = {USB_DEVICE(0x9022, USB_PID_TEVII_S630)},
  1701		[PROF_1100] = {USB_DEVICE(0x3011, USB_PID_PROF_1100)},
  1702		[TEVII_S660] = {USB_DEVICE(0x9022, USB_PID_TEVII_S660)},
  1703		[PROF_7500] = {USB_DEVICE(0x3034, 0x7500)},
  1704		[GENIATECH_SU3000] = {USB_DEVICE(0x1f4d, 0x3000)},
> 1705		[TERRATEC_CINERGY_S2] = {USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_S2_R1)},
  1706		[TEVII_S480_1] = {USB_DEVICE(0x9022, USB_PID_TEVII_S480_1)},
  1707		[TEVII_S480_2] = {USB_DEVICE(0x9022, USB_PID_TEVII_S480_2)},
  1708		[X3M_SPC1400HD] = {USB_DEVICE(0x1f4d, 0x3100)},
  1709		[TEVII_S421] = {USB_DEVICE(0x9022, USB_PID_TEVII_S421)},
  1710		[TEVII_S632] = {USB_DEVICE(0x9022, USB_PID_TEVII_S632)},
> 1711		[TERRATEC_CINERGY_S2_R2] = {USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_S2_R2)},
  1712		[GOTVIEW_SAT_HD] = {USB_DEVICE(0x1FE1, USB_PID_GOTVIEW_SAT_HD)},
  1713		[GENIATECH_T220] = {USB_DEVICE(0x1f4d, 0xD220)},
  1714		[TECHNOTREND_S2_4600] = {USB_DEVICE(USB_VID_TECHNOTREND,

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

      reply	other threads:[~2016-01-25 15:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-25 14:49 [PATCH] [media] dw2102: use the new USB ID Terratec Cinergy S2 macros Mauro Carvalho Chehab
2016-01-25 15:14 ` kbuild test robot [this message]

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=201601252349.8AyQladc%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=crope@iki.fi \
    --cc=kbuild-all@01.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@infradead.org \
    --cc=mchehab@osg.samsung.com \
    --cc=olli.salonen@iki.fi \
    --cc=stefanr@s5r6.in-berlin.de \
    /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.