Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760181AbdCVP2u (ORCPT ); Wed, 22 Mar 2017 11:28:50 -0400 Received: from 4.mo173.mail-out.ovh.net ([46.105.34.219]:32962 "EHLO 4.mo173.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935369AbdCVP2R (ORCPT ); Wed, 22 Mar 2017 11:28:17 -0400 X-Greylist: delayed 4201 seconds by postgrey-1.27 at vger.kernel.org; Wed, 22 Mar 2017 11:28:16 EDT Subject: Re: [PATCH] ipmi: bt-bmc: Add ast2500 compatible string To: Joel Stanley , Corey Minyard References: <20170322140112.2479-1-joel@jms.id.au> Cc: openipmi-developer@lists.sourceforge.net, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Andrew Jeffery , Mark Rutland , Rob Herring From: =?UTF-8?Q?C=c3=a9dric_Le_Goater?= Message-ID: Date: Wed, 22 Mar 2017 15:09:33 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <20170322140112.2479-1-joel@jms.id.au> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Ovh-Tracer-Id: 9629821907083103045 X-VR-SPAMSTATE: OK X-VR-SPAMSCORE: -100 X-VR-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeelhedrjedugdeitdcutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfqggfjpdevjffgvefmvefgnecuuegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmd Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1526 Lines: 45 On 03/22/2017 03:01 PM, Joel Stanley wrote: > The ast2500 SoCs contain the same IPMI BT device. > > Signed-off-by: Joel Stanley Reviewed-by: C?dric Le Goater Thanks, C. > --- > Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 4 +++- > drivers/char/ipmi/bt-bmc.c | 1 + > 2 files changed, 4 insertions(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt b/Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt > index 6f28969af9dc..028268fd99ee 100644 > --- a/Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt > +++ b/Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt > @@ -6,7 +6,9 @@ perform in-band IPMI communication with their host. > > Required properties: > > -- compatible : should be "aspeed,ast2400-ibt-bmc" > +- compatible : should be one of > + "aspeed,ast2400-ibt-bmc" > + "aspeed,ast2500-ibt-bmc" > - reg: physical address and size of the registers > > Optional properties: > diff --git a/drivers/char/ipmi/bt-bmc.c b/drivers/char/ipmi/bt-bmc.c > index fc9e8891eae3..002907e6c7d9 100644 > --- a/drivers/char/ipmi/bt-bmc.c > +++ b/drivers/char/ipmi/bt-bmc.c > @@ -485,6 +485,7 @@ static int bt_bmc_remove(struct platform_device *pdev) > > static const struct of_device_id bt_bmc_match[] = { > { .compatible = "aspeed,ast2400-ibt-bmc" }, > + { .compatible = "aspeed,ast2500-ibt-bmc" }, > { }, > }; > >