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,URIBL_BLOCKED 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 7ED95C43381 for ; Wed, 27 Feb 2019 08:24:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4586B218EA for ; Wed, 27 Feb 2019 08:24:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551255870; bh=WdzU/Drgl5wYSE2nA/m5KMNEFj7KYCAWYkOPHW34IAs=; h=Subject:To:From:Date:List-ID:From; b=z++E/h8+A5+FvmznvTINGe0Y4IvwnLBvveKV4nhj0kIJStxZsIjlk7vhPbUchqUOE DRYVT478b2vThtjfD875c6tWCmrw9VvEVe950BDNnv2AVtWoFQNuJ2fphJ/Ridnkco Vd5kCYtNUnYYHyZgCE+MEJfJ2FdE65xAGPP9EV6A= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727187AbfB0IY3 (ORCPT ); Wed, 27 Feb 2019 03:24:29 -0500 Received: from mail.kernel.org ([198.145.29.99]:57100 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726791AbfB0IY3 (ORCPT ); Wed, 27 Feb 2019 03:24:29 -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 1EE28218E2; Wed, 27 Feb 2019 08:24:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551255868; bh=WdzU/Drgl5wYSE2nA/m5KMNEFj7KYCAWYkOPHW34IAs=; h=Subject:To:From:Date:From; b=zDIYXxpuNNVnB1zfbJ8eu+U4zUGN9kQNx/jcV3bzlaqyN1dr115SE/44DQkZruvT/ SFx+NrA45I1rXmWahT/Q68aY9yVuU8mofV+AvrrwA+6yVxoq6qCCwRoyaQzYuTWs34 nH8X3Q+5Hu15943hac8Xy7RbS5kSPhnh/GS+UVKY= Subject: patch "usb: chipidea: tegra: Fix missed ci_hdrc_remove_device()" added to usb-next To: digetx@gmail.com, gregkh@linuxfoundation.org, peter.chen@nxp.com, stable@vger.kernel.org From: Date: Wed, 27 Feb 2019 09:24:26 +0100 Message-ID: <155125586652225@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-next 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 also be merged in the next major kernel release during the merge window. 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