Commit 8d3e6030 authored by Reka Norman's avatar Reka Norman Committed by Hans Verkuil

media: cros-ec-cec: Add Dibbi to the match table

Dibbi has two HDMI ports which support CEC:
Port D is EC port 0
Port B is EC port 1
Signed-off-by: default avatarReka Norman <rekanorman@chromium.org>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 5d227f02
...@@ -295,6 +295,7 @@ struct cec_dmi_match { ...@@ -295,6 +295,7 @@ struct cec_dmi_match {
}; };
static const char *const fizz_conns[] = { "Port B", NULL }; static const char *const fizz_conns[] = { "Port B", NULL };
static const char *const dibbi_conns[] = { "Port D", "Port B", NULL };
static const struct cec_dmi_match cec_dmi_match_table[] = { static const struct cec_dmi_match cec_dmi_match_table[] = {
/* Google Fizz */ /* Google Fizz */
...@@ -313,6 +314,8 @@ static const struct cec_dmi_match cec_dmi_match_table[] = { ...@@ -313,6 +314,8 @@ static const struct cec_dmi_match cec_dmi_match_table[] = {
{ "Google", "Gladios", "0000:00:02.0", fizz_conns }, { "Google", "Gladios", "0000:00:02.0", fizz_conns },
/* Google Lisbon */ /* Google Lisbon */
{ "Google", "Lisbon", "0000:00:02.0", fizz_conns }, { "Google", "Lisbon", "0000:00:02.0", fizz_conns },
/* Google Dibbi */
{ "Google", "Dibbi", "0000:00:02.0", dibbi_conns },
}; };
static struct device *cros_ec_cec_find_hdmi_dev(struct device *dev, static struct device *cros_ec_cec_find_hdmi_dev(struct device *dev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment