Skip to content

Commit

Permalink
drm: bridge: it66121: Fix the register page length
Browse files Browse the repository at this point in the history
[ Upstream commit 003a1bd ]

Set the register page length or window length to
0x100 according to the documentation.

Fixes: 988156d ("drm: bridge: add it66121 driver")
Signed-off-by: Nicolas Belin <nbelin@baylibre.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220316135733.173950-3-nbelin@baylibre.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
nkbelin authored and gregkh committed Jun 9, 2022
1 parent 384b9ee commit b0bc3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/bridge/ite-it66121.c
Expand Up @@ -227,7 +227,7 @@ static const struct regmap_range_cfg it66121_regmap_banks[] = {
.selector_mask = 0x1,
.selector_shift = 0,
.window_start = 0x00,
.window_len = 0x130,
.window_len = 0x100,
},
};

Expand Down

0 comments on commit b0bc3af

Please sign in to comment.