From: kbuild test robot <lkp@intel.com>
To: "Felipe F. Tonello" <eu@felipetonello.com>
Cc: kbuild-all@01.org, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org, Felipe Balbi <balbi@kernel.org>,
Michal Nazarewicz <mina86@mina86.com>
Subject: Re: [PATCH v3 2/9] usb: gadget: align buffer size when allocating for OUT endpoint
Date: Sat, 6 Aug 2016 03:15:45 +0800 [thread overview]
Message-ID: <201608060355.uflKpBXH%fengguang.wu@intel.com> (raw)
In-Reply-To: <20160805183501.11993-3-eu@felipetonello.com>
[-- Attachment #1: Type: text/plain, Size: 2433 bytes --]
Hi Felipe,
[auto build test ERROR on balbi-usb/next]
[also build test ERROR on v4.7 next-20160805]
[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/Felipe-F-Tonello/Gadget-endpoint-request-allocation-and-MIDI/20160806-024520
base: https://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git next
config: x86_64-randconfig-x013-201631 (attached as .config)
compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
Note: the linux-review/Felipe-F-Tonello/Gadget-endpoint-request-allocation-and-MIDI/20160806-024520 HEAD 5064a41cd5f89103e3b75c1a2ab9f6e98851503b builds fine.
It only hurts bisectibility.
All errors (new ones prefixed by >>):
>> drivers/usb/gadget/u_f.c:17:21: error: conflicting types for 'alloc_ep_req'
struct usb_request *alloc_ep_req(struct usb_ep *ep, int len, int default_len)
^~~~~~~~~~~~
In file included from drivers/usb/gadget/u_f.c:14:0:
drivers/usb/gadget/u_f.h:63:21: note: previous declaration of 'alloc_ep_req' was here
struct usb_request *alloc_ep_req(struct usb_ep *ep, size_t len, int default_len);
^~~~~~~~~~~~
vim +/alloc_ep_req +17 drivers/usb/gadget/u_f.c
1efd54ea Andrzej Pietrasiewicz 2013-11-07 11 * published by the Free Software Foundation.
1efd54ea Andrzej Pietrasiewicz 2013-11-07 12 */
1efd54ea Andrzej Pietrasiewicz 2013-11-07 13
1efd54ea Andrzej Pietrasiewicz 2013-11-07 14 #include "u_f.h"
a7ffc68f Felipe F. Tonello 2016-08-05 15 #include <linux/usb/ch9.h>
1efd54ea Andrzej Pietrasiewicz 2013-11-07 16
1efd54ea Andrzej Pietrasiewicz 2013-11-07 @17 struct usb_request *alloc_ep_req(struct usb_ep *ep, int len, int default_len)
1efd54ea Andrzej Pietrasiewicz 2013-11-07 18 {
1efd54ea Andrzej Pietrasiewicz 2013-11-07 19 struct usb_request *req;
1efd54ea Andrzej Pietrasiewicz 2013-11-07 20
:::::: The code at line 17 was first introduced by commit
:::::: 1efd54eab2b60c68c2ce75ea635306cef847d751 usb: gadget: factor out alloc_ep_req
:::::: TO: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
:::::: CC: Felipe Balbi <balbi@ti.com>
---
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: 28520 bytes --]
next prev parent reply other threads:[~2016-08-05 19:18 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-05 18:34 [PATCH v3 0/9] Gadget endpoint request allocation and MIDI Felipe F. Tonello
2016-08-05 18:34 ` [PATCH v3 1/9] usb: gadget: fix usb_ep_align_maybe endianness and new usb_ep_align Felipe F. Tonello
2016-08-06 2:03 ` Michal Nazarewicz
2016-08-05 18:34 ` [PATCH v3 2/9] usb: gadget: align buffer size when allocating for OUT endpoint Felipe F. Tonello
2016-08-05 19:15 ` kbuild test robot [this message]
2016-08-08 17:09 ` Felipe Ferreri Tonello
2016-08-05 18:34 ` [PATCH v3 3/9] usb: gadget: f_midi: remove alignment code " Felipe F. Tonello
2016-08-05 18:34 ` [PATCH v3 4/9] usb: gadget: f_midi: defaults buflen sizes to 512 Felipe F. Tonello
2016-08-06 2:04 ` Michal Nazarewicz
2016-08-05 18:34 ` [PATCH v3 5/9] usb: gadget: f_midi: refactor state machine Felipe F. Tonello
2016-08-05 18:34 ` [PATCH v3 6/9] usb: gadget: f_midi: drop substreams when disabling endpoint Felipe F. Tonello
2016-08-05 18:34 ` [PATCH v3 7/9] usb: gadget: remove useless parameter in alloc_ep_req() Felipe F. Tonello
2016-08-05 18:35 ` [PATCH v3 8/9] usb: gadget: f_hid: use free_ep_req() Felipe F. Tonello
2016-08-05 18:35 ` [PATCH v3 9/9] usb: gadget: f_hid: use alloc_ep_req() Felipe F. Tonello
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=201608060355.uflKpBXH%fengguang.wu@intel.com \
--to=lkp@intel.com \
--cc=balbi@kernel.org \
--cc=eu@felipetonello.com \
--cc=kbuild-all@01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mina86@mina86.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