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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0CFDFC3DA61 for ; Sat, 27 Jul 2024 05:23:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=PecnpSFZSpEk71w+mzSX1+0p2Ix0l5VGcMCXRH2mhgo=; b=Wbg4XHHeh5P+oq6s57llmfOGH4 3k6fOSsqp2k2nUKRNXu9sLCVz8s06usLmZvoLDB7qKvNpyQRzd4EkKYb7bIu9uyT2sOEQu30DtLc0 hVNZ7NCnIk4s7kIFaQOwu/fFi20qcOlbStDOgv8Sz6M8EntylRQNn4M4EBXG61e4JC/qRIuAdbpDT IiCAmEkgdLMkW6aAS1dd490zY4fIghHRJuNtJQ9vjB4sWKxygDQdnFuK/lSZ7/iU9lAEtMLx+FF9C c7vRIfGKb/dz9tlAXLns6lbRpifZztrVmDF62i4emBhRvf7WnQyU5+lCtC7PRQgpD+6Z3HJFG/eJ7 +GNzxO9Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1sXZtU-000000067AZ-1Fk7; Sat, 27 Jul 2024 05:23:00 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1sXZt4-0000000676z-1LjW for linux-arm-kernel@lists.infradead.org; Sat, 27 Jul 2024 05:22:35 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id DB90060A3C; Sat, 27 Jul 2024 05:22:32 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 06372C32781; Sat, 27 Jul 2024 05:22:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1722057752; bh=xfmPjovjBZYxb8DvcFlLYvxe6heCIypeNSTl0cbSwrA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=SMckoCKnoft6xVCwglZ/nkpqahk1hA471IQIR4kxwf04c+WHGnzyuAPkXb0bP4pmv 2Hiz5JyFXjQ0usV1wK4+1QPBhsEU0faqO5uQXtsvzFgunmjA50d8TOljVl7gKlT3LD Mf0D3ecgv2ukBG16aAlqEJq48BgCaFhc1b0hFUXk= Date: Sat, 27 Jul 2024 07:22:28 +0200 From: Greg Kroah-Hartman To: Shenwei Wang Cc: Peter Chen , Pawel Laszczak , Shawn Guo , Sascha Hauer , Roger Quadros , Pengutronix Kernel Team , Fabio Estevam , Frank Li , linux-usb@vger.kernel.org, imx@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-imx@nxp.com Subject: Re: [PATCH v2] usb: cdns3: imx: simplify system pm using _force_suspend/_resume Message-ID: <2024072718-revert-kangaroo-37c7@gregkh> References: <20240726150731.297443-1-shenwei.wang@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240726150731.297443-1-shenwei.wang@nxp.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240726_222234_447829_AC49223F X-CRM114-Status: GOOD ( 17.75 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, Jul 26, 2024 at 10:07:31AM -0500, Shenwei Wang wrote: > By utilizing _force_suspend and _force_resume, ensures a more consistent > and simple approach to handling system sleep states. It also aligns the > driver's PM behavior with the other drivers' common practices. > > Fixes: db3c4e366287 ("usb: cdns3: imx: Rework system PM to avoid duplicated operations") > Reviewed-by: Frank Li > Signed-off-by: Shenwei Wang > --- > Changes in V2: > - revert the unneeded change of removing an extra blank line. > > drivers/usb/cdns3/cdns3-imx.c | 17 +++++++---------- > 1 file changed, 7 insertions(+), 10 deletions(-) > Hi, This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him a patch that has triggered this response. He used to manually respond to these common problems, but in order to save his sanity (he kept writing the same thing over and over, yet to different people), I was created. Hopefully you will not take offence and will fix the problem in your patch and resubmit it so that it can be accepted into the Linux kernel tree. You are receiving this message because of the following common error(s) as indicated below: - You have marked a patch with a "Fixes:" tag for a commit that is in an older released kernel, yet you do not have a cc: stable line in the signed-off-by area at all, which means that the patch will not be applied to any older kernel releases. To properly fix this, please follow the documented rules in the Documentation/process/stable-kernel-rules.rst file for how to resolve this. If you wish to discuss this problem further, or you have questions about how to resolve this issue, please feel free to respond to this email and Greg will reply once he has dug out from the pending patches received from other developers. thanks, greg k-h's patch email bot