From patchwork Fri Aug 23 20:41:49 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Michal_Such=C3=A1nek?= X-Patchwork-Id: 1152425 X-Patchwork-Delegate: marek.vasut@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 46FYH8133Qz9sDB for ; Sat, 24 Aug 2019 06:42:09 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 88787C22138; Fri, 23 Aug 2019 20:41:57 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id EA90DC21C50; Fri, 23 Aug 2019 20:41:55 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 22770C21C38; Fri, 23 Aug 2019 20:41:54 +0000 (UTC) Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by lists.denx.de (Postfix) with ESMTPS id B71DEC21C29 for ; Fri, 23 Aug 2019 20:41:53 +0000 (UTC) X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 9B210AEE1; Fri, 23 Aug 2019 20:41:52 +0000 (UTC) From: Michal Suchanek To: u-boot@lists.denx.de Date: Fri, 23 Aug 2019 22:41:49 +0200 Message-Id: <2fe6cef8c582c985eb387cc9dac458c306b6b0e4.1566592744.git.msuchanek@suse.de> X-Mailer: git-send-email 2.22.0 In-Reply-To: References: , , MIME-Version: 1.0 Cc: Marek Vasut , Andre Przywara , Sven Schwermer , York Sun , Michal Suchanek , Chris Packham Subject: [U-Boot] [PATCH] Add the submit_int_msg nonblock argument in musb_hcd.c X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Signed-off-by: Michal Suchanek --- drivers/usb/musb/musb_hcd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Can you squash this to [4/5] or do you want to respin? Thanks Michal diff --git a/drivers/usb/musb/musb_hcd.c b/drivers/usb/musb/musb_hcd.c index 1f2805270aa3..ba4c206ccfdb 100644 --- a/drivers/usb/musb/musb_hcd.c +++ b/drivers/usb/musb/musb_hcd.c @@ -1050,7 +1050,7 @@ int usb_lowlevel_stop(int index) * transfers are not supported. */ int submit_int_msg(struct usb_device *dev, unsigned long pipe, - void *buffer, int len, int interval) + void *buffer, int len, int interval, bool nonblock) { int dir_out = usb_pipeout(pipe); int ep = usb_pipeendpoint(pipe);