ipmi: bt: Add ast2600 compatible string
authorJoel Stanley <joel@jms.id.au>
Fri, 3 Sep 2021 01:53:14 +0000 (11:23 +0930)
committerCorey Minyard <cminyard@mvista.com>
Thu, 7 Oct 2021 19:02:45 +0000 (14:02 -0500)
The AST2600 has the same register set as the previous generation SoCs.

Signed-off-by: Joel Stanley <joel@jms.id.au>
Acked-by: Rob Herring <robh@kernel.org>
Message-Id: <20210903015314.177987-1-joel@jms.id.au>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Documentation/devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt
drivers/char/ipmi/bt-bmc.c

index 028268fd99eeba926424ae90ac73eab6b818f4be..c9902fd4b38b77271fd0e53c3ca937401eae79d0 100644 (file)
@@ -9,6 +9,7 @@ Required properties:
 - compatible : should be one of
        "aspeed,ast2400-ibt-bmc"
        "aspeed,ast2500-ibt-bmc"
+       "aspeed,ast2600-ibt-bmc"
 - reg: physical address and size of the registers
 
 Optional properties:
index fb771ce6f7bf2a2d0fd39997692743b68a8e2ecb..7450904e330a04276d355e5d8cc6fb6c2ba06e45 100644 (file)
@@ -472,6 +472,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" },
+       { .compatible = "aspeed,ast2600-ibt-bmc" },
        { },
 };