diff options
author | Fabio Estevam <festevam@denx.de> | 2024-10-24 08:37:52 -0300 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2024-11-08 13:38:10 +0100 |
commit | 69df1f89db2b917e28e3f01b5b4eac8f3ef51b87 (patch) | |
tree | c07d551fff35c43a631ec10725b40d17357aaa52 /drivers/media | |
parent | 095aa8926bd023a25977729dd50875141a34b6bd (diff) | |
download | lwn-69df1f89db2b917e28e3f01b5b4eac8f3ef51b87.tar.gz lwn-69df1f89db2b917e28e3f01b5b4eac8f3ef51b87.zip |
media: adv7180: Also check for "adi,force-bt656-4"
According to adv7180.yaml, the correct property name is
"adi,force-bt656-4".
Expand the check to also test against the "adi,force-bt656-4" compatible
string.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/i2c/adv7180.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/i2c/adv7180.c b/drivers/media/i2c/adv7180.c index 819ff9f7c90f..ff7dfa0278a7 100644 --- a/drivers/media/i2c/adv7180.c +++ b/drivers/media/i2c/adv7180.c @@ -1440,7 +1440,8 @@ static int adv7180_probe(struct i2c_client *client) return ret; } - if (of_property_read_bool(np, "adv,force-bt656-4")) + if (of_property_read_bool(np, "adv,force-bt656-4") || + of_property_read_bool(np, "adi,force-bt656-4")) state->force_bt656_4 = true; if (state->chip_info->flags & ADV7180_FLAG_MIPI_CSI2) { |