diff options
author | jason-jh.lin <jason-jh.lin@mediatek.com> | 2021-08-31 15:09:02 +0800 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2021-08-31 22:57:39 -0500 |
commit | 8d4f5a9e012abb7919f7b63656ea571f22789918 (patch) | |
tree | c761cbc36b80ac43e33b60f9e007dcbc396e8535 /drivers/mailbox | |
parent | 704446b935bd7061b8799b16922265f88b2a4445 (diff) | |
download | linux-8d4f5a9e012abb7919f7b63656ea571f22789918.tar.bz2 |
mailbox: cmdq: add mediatek mailbox support for mt8195
Add mt8195 compatible name in the driver data of cmdq mailbox driver.
Signed-off-by: jason-jh.lin <jason-jh.lin@mediatek.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r-- | drivers/mailbox/mtk-cmdq-mailbox.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mailbox/mtk-cmdq-mailbox.c b/drivers/mailbox/mtk-cmdq-mailbox.c index d03bfafe05b4..8ca3fa00dcfb 100644 --- a/drivers/mailbox/mtk-cmdq-mailbox.c +++ b/drivers/mailbox/mtk-cmdq-mailbox.c @@ -621,6 +621,7 @@ static const struct of_device_id cmdq_of_ids[] = { {.compatible = "mediatek,mt8183-gce", .data = (void *)&gce_plat_v3}, {.compatible = "mediatek,mt6779-gce", .data = (void *)&gce_plat_v4}, {.compatible = "mediatek,mt8192-gce", .data = (void *)&gce_plat_v5}, + {.compatible = "mediatek,mt8195-gce", .data = (void *)&gce_plat_v4}, {} }; |