Skip to content

Commit db74b04

Browse files
Marek Vasutlumag
authored andcommitted
drm/bridge: lt9211: Drop check for last nibble of version register
There is now a new LT9211 rev. U5, which reports chip ID 0x18 0x01 0xe4 . The previous LT9211 reported chip ID 0x18 0x01 0xe3 , which is what the driver checks for right now. Since there is a possibility there will be yet another revision of the LT9211 in the future, drop the last version nibble check to allow all future revisions of the chip to work with this driver. This fix makes LT9211 rev. U5 work with this driver. Fixes: 8ce4129 ("drm/bridge: lt9211: Add Lontium LT9211 bridge driver") Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Dmitry Baryshkov <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Baryshkov <[email protected]>
1 parent e07e10a commit db74b04

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/gpu/drm/bridge/lontium-lt9211.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ static int lt9211_read_chipid(struct lt9211 *ctx)
121121
}
122122

123123
/* Test for known Chip ID. */
124-
if (chipid[0] != REG_CHIPID0_VALUE || chipid[1] != REG_CHIPID1_VALUE ||
125-
chipid[2] != REG_CHIPID2_VALUE) {
124+
if (chipid[0] != REG_CHIPID0_VALUE || chipid[1] != REG_CHIPID1_VALUE) {
126125
dev_err(ctx->dev, "Unknown Chip ID: 0x%02x 0x%02x 0x%02x\n",
127126
chipid[0], chipid[1], chipid[2]);
128127
return -EINVAL;

0 commit comments

Comments
 (0)