Message ID | 90e8fd66b42bc27e6b8c01085c40721232217a5d.1676532146.git.jk@codeconstruct.com.au (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | i3c: Add support for ast2600 i3c controller | expand |
diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c index 9be3348cba0e..5ac226e0c558 100644 --- a/drivers/i3c/master/dw-i3c-master.c +++ b/drivers/i3c/master/dw-i3c-master.c @@ -1269,6 +1269,7 @@ static const struct dw_i3c_platform_ops ast2600_platform_ops = { static const struct of_device_id dw_i3c_master_of_match[] = { { .compatible = "snps,dw-i3c-master-1.00a", }, + { .compatible = "aspeed,ast2600-i3c", .data = &ast2600_platform_ops }, {}, }; MODULE_DEVICE_TABLE(of, dw_i3c_master_of_match);
Now that we have platform-specific code for the ast2600, enable it through a new compatible string. Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au> --- drivers/i3c/master/dw-i3c-master.c | 1 + 1 file changed, 1 insertion(+)