Message ID | 20230820184402.102486-2-biju.das.jz@bp.renesas.com |
---|---|
State | New |
Headers | show |
Series | onvert enum->pointer for data in the rt1711h match tables | expand |
diff --git a/drivers/usb/typec/tcpm/tcpci_rt1711h.c b/drivers/usb/typec/tcpm/tcpci_rt1711h.c index 17ebc5fb684f..1e13ce3c4b35 100644 --- a/drivers/usb/typec/tcpm/tcpci_rt1711h.c +++ b/drivers/usb/typec/tcpm/tcpci_rt1711h.c @@ -392,8 +392,8 @@ static void rt1711h_remove(struct i2c_client *client) } static const struct i2c_device_id rt1711h_id[] = { - { "rt1711h", 0 }, - { "rt1715", 0 }, + { "rt1711h", RT1711H_DID }, + { "rt1715", RT1715_DID }, { } }; MODULE_DEVICE_TABLE(i2c, rt1711h_id);
Make similar OF and ID table to extend support for ID match using i2c_match_data()/device_get_match_data() later. Currently it works only for OF match tables as the driver_data is wrong for ID match. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> --- drivers/usb/typec/tcpm/tcpci_rt1711h.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)