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 1DDD5C433F5 for ; Thu, 14 Apr 2022 12:23:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=BakaO9Q/cOaHuO5L1RM59duQcUbWuwhS9QNvhnTPcoU=; b=kdkyheGYv+dpfF zA06o259UDcmJwl5c9b17OEDcVX2PUL4L2PxiONJ0H4Ic5Ye+kzpUWHgO+QFRhtN7s8ut/j/JUZFA DrVQBuoYATovNFgxeqcBo0A59ZdUy22Io+PuPiMgvdn3ZfvLmYnAV6qJyQzdeWXYyZzGH608Ubbxk 7Fdkqbx/E3JcFf7tvqNOwMudn0ZT5puh8yBfTpo6f48Wzl4FJn1Paf7nrww25dKcWDj65PUL5M/rd YDaSl1h401LTRLuYbo2lCS0iB+JJnX427RFNK2pEnFvwJrQ5GU5rdFhSI4xXTRTmz88QIZi6gIHFQ LTV+31uwfZh3YMRy8/Bg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1neyUU-005VK1-SX; Thu, 14 Apr 2022 12:22:27 +0000 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1neyUR-005VIm-4u for linux-arm-kernel@lists.infradead.org; Thu, 14 Apr 2022 12:22:24 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id A8A6D61F63; Thu, 14 Apr 2022 12:22:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 951F1C385A1; Thu, 14 Apr 2022 12:22:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649938942; bh=8Xnx1DikNC8S2miol9o95pX0WhJ5fuI422FUZIL5zhg=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=N8vF0SYdpsOHP/kq1h8sVjrcKPvnImlfhaeWieGFCt9WQNoz+/pC8GVsQ7LgHgwx6 bahUHfWLmPARFdsuDbP75vQxEYigTxwlYRfHpEfDMYnB5Cx7Icft0fLLLON1CH1Eui eaGX/bXDgdmvvEpOs23AYeh1DMgsk7QIC3pCWMkpRwZq8O1yp3sV7SYHEfctNv9b44 nM5uBbKrIJQx6Vh3VQa44flG/cxsz7Cve7gu9W9pAufjz96fBQfw0riFR/yLYfstWQ BU97D2C6ww4KepktXtYrxxSqFqh6HcU1zWTTDK3mdHuzV1O3Tt2i/GZagEIBwPIN5i 05vzYceWGgdgQ== Date: Thu, 14 Apr 2022 14:22:12 +0200 From: Jakub Kicinski To: Dylan Hung Cc: , , , , , , , , , , , , , , , Subject: Re: [PATCH v5 0/3] Add reset deassertion for Aspeed MDIO Message-ID: <20220414142212.258fcb37@kernel.org> In-Reply-To: <20220413121037.23748-1-dylan_hung@aspeedtech.com> References: <20220413121037.23748-1-dylan_hung@aspeedtech.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220414_052223_270738_500715C4 X-CRM114-Status: GOOD ( 10.66 ) 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Wed, 13 Apr 2022 20:10:34 +0800 Dylan Hung wrote: > Add missing reset deassertion for Aspeed MDIO bus controller. The reset > is asserted by the hardware when power-on so the driver only needs to > deassert it. To be able to work with the old DT blobs, the reset is > optional since it may be deasserted by the bootloader or the previous > kernel. I presume you want this applied to net-next, but it appears there is a conflict or something. Could you resend the patches based on net-next/master? _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel