mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00
drm/bridge: tc358768: Correct BTACNTRL1 programming
TXTAGOCNT and RXTASURECNT bitfields of BTACNTRL1 register are swapped in the code, correct them. Driver doesn't implement low power mode for now, so this change doesn't make a practical difference yet. Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # Asus TF700T Tested-by: Maxim Schwalm <maxim.schwalm@gmail.com> #TF700T Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Reviewed-by: Robert Foss <robert.foss@linaro.org> Signed-off-by: Robert Foss <robert.foss@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20211002233447.1105-6-digetx@gmail.com
This commit is contained in:
parent
fbc5a90e82
commit
43a1f1467c
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,7 @@ static void tc358768_bridge_pre_enable(struct drm_bridge *bridge)
|
|||
val = tc358768_ns_to_cnt(val, dsibclk_nsk) - 1;
|
||||
val2 = tc358768_ns_to_cnt(tc358768_to_ns((lptxcnt + 1) * dsibclk_nsk),
|
||||
dsibclk_nsk) - 2;
|
||||
val |= val2 << 16;
|
||||
val = val << 16 | val2;
|
||||
dev_dbg(priv->dev, "BTACNTRL1: 0x%x\n", val);
|
||||
tc358768_write(priv, TC358768_BTACNTRL1, val);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue