diff options
author | Kells Ping <kells.ping@quanta.corp-partner.google.com> | 2025-05-08 16:19:04 +0800 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2025-05-09 11:55:08 +0200 |
commit | 5a50a258b9ee1049998def0717b1198291dbf1ca (patch) | |
tree | 079b8741b890fe1124d47a2202d9ccd20292c4f7 /drivers/media/cec/platform | |
parent | 3de572fe2189a4a0bd80295e1f478401e739498e (diff) |
media: platform: cros-ec: select ports ab for Dirks
The Google Dirks device used the wrong ports, fix this.
Signed-off-by: Kells Ping <kells.ping@quanta.corp-partner.google.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
[hverkuil: fixed outdated subject and commit log]
Diffstat (limited to 'drivers/media/cec/platform')
-rw-r--r-- | drivers/media/cec/platform/cros-ec/cros-ec-cec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/cec/platform/cros-ec/cros-ec-cec.c b/drivers/media/cec/platform/cros-ec/cros-ec-cec.c index 106860d11cef..419b9a7abcce 100644 --- a/drivers/media/cec/platform/cros-ec/cros-ec-cec.c +++ b/drivers/media/cec/platform/cros-ec/cros-ec-cec.c @@ -298,6 +298,7 @@ struct cec_dmi_match { static const char *const port_b_conns[] = { "Port B", NULL }; static const char *const port_db_conns[] = { "Port D", "Port B", NULL }; static const char *const port_ba_conns[] = { "Port B", "Port A", NULL }; +static const char *const port_ab_conns[] = { "Port A", "Port B", NULL }; static const char *const port_d_conns[] = { "Port D", NULL }; static const struct cec_dmi_match cec_dmi_match_table[] = { @@ -330,7 +331,7 @@ static const struct cec_dmi_match cec_dmi_match_table[] = { /* Google Dita */ { "Google", "Dita", "0000:00:02.0", port_db_conns }, /* Google Dirks */ - { "Google", "Dirks", "0000:00:02.0", port_db_conns }, + { "Google", "Dirks", "0000:00:02.0", port_ab_conns }, /* Google Moxie */ { "Google", "Moxie", "0000:00:02.0", port_b_conns }, }; |