From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CA1C8C43381 for ; Tue, 26 Feb 2019 10:58:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9601E217F5 for ; Tue, 26 Feb 2019 10:58:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551178724; bh=SBkW8m3XLAKxGeJY9aVviL+CjJ2H0Dmc+1GUMnI+u0c=; h=Subject:To:From:Date:List-ID:From; b=d7aKrVhGT3heajqMGnvrOgqCe/Bv4lvZqqEh1o3zPoq7cxWsRSKuNWWW/blH2WKp0 6S8AIO7ElFtOGr9NVPPsPwyAYhfmg2DMsthhnN3J2b+0UNL4IyLAjO0yp2fKiKhMtp cCSBDHeVo1MfdNcu2ikKNuXx1Sq9AMqVAbTcUmXY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727690AbfBZK6o (ORCPT ); Tue, 26 Feb 2019 05:58:44 -0500 Received: from mail.kernel.org ([198.145.29.99]:35080 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727051AbfBZK6n (ORCPT ); Tue, 26 Feb 2019 05:58:43 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8F37820842; Tue, 26 Feb 2019 10:58:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551178723; bh=SBkW8m3XLAKxGeJY9aVviL+CjJ2H0Dmc+1GUMnI+u0c=; h=Subject:To:From:Date:From; b=Zg67JDF8tzTMXIQ6w5Syrxbrnboj7l1VmHkk7WJQE8DkWxbK7wJuXkJBdb+k5lH9X wO3U8lrHu+6n+Xxtb9QL/PiO8G6F/r48NAKGE6J3kbkqyQbpTwO2NCqKKfzcEGEC4F +JxX9Atpd+EOR3sYil+Au6G4Ji6KC/Sw44sMvpmI= Subject: patch "usb: chipidea: tegra: Fix missed ci_hdrc_remove_device()" added to usb-testing To: digetx@gmail.com, gregkh@linuxfoundation.org, peter.chen@nxp.com, stable@vger.kernel.org From: Date: Tue, 26 Feb 2019 11:58:39 +0100 Message-ID: <155117871921871@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 Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-testing branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will be merged to the usb-next branch sometime soon, after it passes testing, and the merge window is open. If you have any questions about this process, please let me know. >From 563b9372f7ec57e44e8f9a8600c5107d7ffdd166 Mon Sep 17 00:00:00 2001 From: Dmitry Osipenko Date: Sun, 24 Feb 2019 18:36:22 +0300 Subject: usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() The ChipIdea's platform device need to be unregistered on Tegra's driver module removal. Fixes: dfebb5f43a78827a ("usb: chipidea: Add support for Tegra20/30/114/124") Signed-off-by: Dmitry Osipenko Acked-by: Peter Chen Cc: stable Signed-off-by: Greg Kroah-Hartman --- drivers/usb/chipidea/ci_hdrc_tegra.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/chipidea/ci_hdrc_tegra.c b/drivers/usb/chipidea/ci_hdrc_tegra.c index 772851bee99b..12025358bb3c 100644 --- a/drivers/usb/chipidea/ci_hdrc_tegra.c +++ b/drivers/usb/chipidea/ci_hdrc_tegra.c @@ -130,6 +130,7 @@ static int tegra_udc_remove(struct platform_device *pdev) { struct tegra_udc *udc = platform_get_drvdata(pdev); + ci_hdrc_remove_device(udc->dev); usb_phy_set_suspend(udc->phy, 1); clk_disable_unprepare(udc->clk); -- 2.21.0