Skip to content

Commit da57d12

Browse files
tombamchehab
authored andcommitted
media: i2c: ds90ub960: Fix PLL config for 1200 MHz CSI rate
smatch reports: drivers/media/i2c/ds90ub960.c:1788 ub960_init_tx_ports() error: uninitialized symbol 'pll_div'. This is caused by 'pll_div' not being set for 1200 MHz CSI rate. Set the 'pll_div' correctly. Closes: https://lore.kernel.org/all/[email protected]/ Fixes: afe267f ("media: i2c: add DS90UB960 driver") Reported-by: Hans Verkuil <[email protected]> Signed-off-by: Tomi Valkeinen <[email protected]> Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 1cf8ddc commit da57d12

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

drivers/media/i2c/ds90ub960.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1771,6 +1771,7 @@ static int ub960_init_tx_ports(struct ub960_data *priv)
17711771
break;
17721772
case MHZ(1200):
17731773
speed_select = 1;
1774+
pll_div = 0x18;
17741775
break;
17751776
case MHZ(800):
17761777
speed_select = 2;

0 commit comments

Comments
 (0)