mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 11:16:38 +07:00
[media] af9033: fix firmware version logging
AF9030 and IT9130 series has different memory location for firmware version. Choose correct location according to chip type. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
5190ff3e3e
commit
ef5211fd59
@ -1061,6 +1061,7 @@ struct dvb_frontend *af9033_attach(const struct af9033_config *config,
|
||||
int ret;
|
||||
struct af9033_state *state;
|
||||
u8 buf[8];
|
||||
u32 reg;
|
||||
|
||||
dev_dbg(&i2c->dev, "%s:\n", __func__);
|
||||
|
||||
@ -1081,7 +1082,21 @@ struct dvb_frontend *af9033_attach(const struct af9033_config *config,
|
||||
}
|
||||
|
||||
/* firmware version */
|
||||
ret = af9033_rd_regs(state, 0x0083e9, &buf[0], 4);
|
||||
switch (state->cfg.tuner) {
|
||||
case AF9033_TUNER_IT9135_38:
|
||||
case AF9033_TUNER_IT9135_51:
|
||||
case AF9033_TUNER_IT9135_52:
|
||||
case AF9033_TUNER_IT9135_60:
|
||||
case AF9033_TUNER_IT9135_61:
|
||||
case AF9033_TUNER_IT9135_62:
|
||||
reg = 0x004bfc;
|
||||
break;
|
||||
default:
|
||||
reg = 0x0083e9;
|
||||
break;
|
||||
}
|
||||
|
||||
ret = af9033_rd_regs(state, reg, &buf[0], 4);
|
||||
if (ret < 0)
|
||||
goto err;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user