]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: platform: cros-ec: select ports ab for Dirks
authorKells Ping <kells.ping@quanta.corp-partner.google.com>
Thu, 8 May 2025 08:19:04 +0000 (16:19 +0800)
committerHans Verkuil <hverkuil@xs4all.nl>
Fri, 9 May 2025 09:55:08 +0000 (11:55 +0200)
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]

drivers/media/cec/platform/cros-ec/cros-ec-cec.c

index 106860d11cef2c5c8cde1be106f97757fab03beb..419b9a7abccebffbf4f1f22f84ef82a5f4be1e3b 100644 (file)
@@ -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 },
 };