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 4C7AAC54E41 for ; Tue, 27 Feb 2024 09:44:15 +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-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:From:References:Cc:To:Subject: MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=9acHnKKMo5nTYOxGDKr/pMV5DwSRI10APFc2x9MHN3Q=; b=fJNsaOLbo/G49i qwP+6yS4vbDVGVqX1B2l4wE0W1JDHWatGtrhLJgIS8olsK43AR+d24jBgT04oEeTVmp1PmkEsHMvX vKo8eENnXFeeGgCxNRRSaicCcbZy5aTFSvCLAAj7GnuIdIQxyOm4N/mwtTaWVPcm3FBY+45I1hGOh MVfIOpm+qvGgGR82NLjAOcHHasB3pMAPdiRtveQS4Tbukf3fx0KtU5sRZC97WFCiw2qNt1/tN3jOe Wkl7f6wZPQwS2ktzbxZVythTNjcbxECt1wCK0v5ifyAuywqm5EYwQnvIGQ9pwRPqbI718Em2jFpuv WEWAm3Swe4+AYL1PrYbg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1reu0H-00000004aWl-0ES3; Tue, 27 Feb 2024 09:44:01 +0000 Received: from mx.socionext.com ([202.248.49.38]) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1reu0E-00000004aU8-13yi; Tue, 27 Feb 2024 09:44:00 +0000 Received: from unknown (HELO iyokan2-ex.css.socionext.com) ([172.31.9.54]) by mx.socionext.com with ESMTP; 27 Feb 2024 18:43:53 +0900 Received: from mail.mfilter.local (mail-arc01.css.socionext.com [10.213.46.36]) by iyokan2-ex.css.socionext.com (Postfix) with ESMTP id ED58620584CE; Tue, 27 Feb 2024 18:43:52 +0900 (JST) Received: from kinkan2.css.socionext.com ([172.31.9.51]) by m-FILTER with ESMTP; Tue, 27 Feb 2024 18:43:52 +0900 Received: from [10.212.157.38] (unknown [10.212.157.38]) by kinkan2.css.socionext.com (Postfix) with ESMTP id F1918B62A2; Tue, 27 Feb 2024 18:43:51 +0900 (JST) Message-ID: <2cb457a6-0039-e4fe-3668-690e6355771d@socionext.com> Date: Tue, 27 Feb 2024 18:43:51 +0900 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH v2 14/14] serial: 8250_uniphier: Switch to use uart_read_port_properties() To: Andy Shevchenko , Greg Kroah-Hartman , Thomas Gleixner , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-aspeed@lists.ozlabs.org, linux-rpi-kernel@lists.infradead.org, linux-mips@vger.kernel.org, linux-tegra@vger.kernel.org Cc: Jiri Slaby , Joel Stanley , Andrew Jeffery , Florian Fainelli , Broadcom internal kernel review list , Ray Jui , Scott Branden , Al Cooper , =?UTF-8?Q?Ilpo_J=c3=a4rvinen?= , Paul Cercueil , Vladimir Zapolskiy , Thierry Reding , Jonathan Hunter , Masami Hiramatsu References: <20240226142514.1485246-1-andriy.shevchenko@linux.intel.com> <20240226142514.1485246-15-andriy.shevchenko@linux.intel.com> Content-Language: en-US From: Kunihiko Hayashi In-Reply-To: <20240226142514.1485246-15-andriy.shevchenko@linux.intel.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20240227_014358_453476_F42FAA7B X-CRM114-Status: UNSURE ( 7.88 ) X-CRM114-Notice: Please train this message. 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-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi, On 2024/02/26 23:19, Andy Shevchenko wrote: > Since we have now a common helper to read port properties > use it instead of sparse home grown solution. > > Signed-off-by: Andy Shevchenko I confirmed that it works properly. Reviewed-by: Kunihiko Hayashi Tested-by: Kunihiko Hayashi Thank you, --- Best Regards Kunihiko Hayashi _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel