From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:52021 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161966AbcE3UcF (ORCPT ); Mon, 30 May 2016 16:32:05 -0400 Subject: Patch "usb: gadget: udc: core: Fix argument of dev_err() in usb_gadget_map_request()" has been added to the 4.6-stable tree To: yoshihiro.shimoda.uh@renesas.com, gregkh@linuxfoundation.org Cc: , From: Date: Mon, 30 May 2016 13:25:06 -0700 Message-ID: <1464639906207195@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled usb: gadget: udc: core: Fix argument of dev_err() in usb_gadget_map_request() to the 4.6-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-gadget-udc-core-fix-argument-of-dev_err-in-usb_gadget_map_request.patch and it can be found in the queue-4.6 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 5096c4d3bfa75bdd23c78f799aabd08598afb48f Mon Sep 17 00:00:00 2001 From: Yoshihiro Shimoda Date: Mon, 18 Apr 2016 16:53:38 +0900 Subject: usb: gadget: udc: core: Fix argument of dev_err() in usb_gadget_map_request() From: Yoshihiro Shimoda commit 5096c4d3bfa75bdd23c78f799aabd08598afb48f upstream. The argument of dev_err() in usb_gadget_map_request() should be dev instead of &gadget->dev. Fixes: 7ace8fc ("usb: gadget: udc: core: Fix argument of dma_map_single for IOMMU") Signed-off-by: Yoshihiro Shimoda Signed-off-by: Greg Kroah-Hartman --- drivers/usb/gadget/udc/udc-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/gadget/udc/udc-core.c +++ b/drivers/usb/gadget/udc/udc-core.c @@ -75,7 +75,7 @@ int usb_gadget_map_request(struct usb_ga mapped = dma_map_sg(dev, req->sg, req->num_sgs, is_in ? DMA_TO_DEVICE : DMA_FROM_DEVICE); if (mapped == 0) { - dev_err(&gadget->dev, "failed to map SGs\n"); + dev_err(dev, "failed to map SGs\n"); return -EFAULT; } Patches currently in stable-queue which might be from yoshihiro.shimoda.uh@renesas.com are queue-4.6/usb-gadget-udc-core-fix-argument-of-dev_err-in-usb_gadget_map_request.patch queue-4.6/usb-host-xhci-rcar-avoid-long-wait-in-xhci_reset.patch