diff options
| author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2019-09-25 15:56:04 +0300 |
|---|---|---|
| committer | Joel Stanley <joel@jms.id.au> | 2021-11-01 09:42:43 +0300 |
| commit | 7550108d032c2f4bcb0ad586cedb76b72941ea2b (patch) | |
| tree | 777cc6a6879caf3117438592d68ba52e826353e0 | |
| parent | 00d5d14c757832693f3cc61f846ecb61a3c95590 (diff) | |
| download | linux-7550108d032c2f4bcb0ad586cedb76b72941ea2b.tar.xz | |
ipmi: aspeed-g6: Add compatible strings
The AST2600 SoC contains the same IPMI (BT/KCS) devices as the AST2500.
OpenBMC-Staging-Count: 7
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Signed-off-by: Joel Stanley <joel@jms.id.au>
| -rw-r--r-- | drivers/char/ipmi/bt-bmc.c | 1 | ||||
| -rw-r--r-- | drivers/char/ipmi/kcs_bmc_aspeed.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/ipmi/bt-bmc.c b/drivers/char/ipmi/bt-bmc.c index 6e3d247b55d1..d16516be9ac9 100644 --- a/drivers/char/ipmi/bt-bmc.c +++ b/drivers/char/ipmi/bt-bmc.c @@ -508,6 +508,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" }, { }, }; diff --git a/drivers/char/ipmi/kcs_bmc_aspeed.c b/drivers/char/ipmi/kcs_bmc_aspeed.c index 92a37b33494c..b555286016b1 100644 --- a/drivers/char/ipmi/kcs_bmc_aspeed.c +++ b/drivers/char/ipmi/kcs_bmc_aspeed.c @@ -693,6 +693,7 @@ static const struct of_device_id ast_kcs_bmc_match[] = { { .compatible = "aspeed,ast2500-kcs-bmc", .data = &of_v1_ops }, { .compatible = "aspeed,ast2400-kcs-bmc-v2", .data = &of_v2_ops }, { .compatible = "aspeed,ast2500-kcs-bmc-v2", .data = &of_v2_ops }, + { .compatible = "aspeed,ast2600-kcs-bmc", .data = &of_v2_ops }, { } }; MODULE_DEVICE_TABLE(of, ast_kcs_bmc_match); |
