提交 e0bae9b3 编写于 作者: A Antti Palosaari 提交者: Mauro Carvalho Chehab

[media] cx24116: make FW DL split more readable

Change firmware download split, which I introduced few patch earlier,
a little bit to make it more readable as requested [1].

Anyhow, for some reason this seems to increase compiled binary size
52 bytes, on my AMD64 box, which is rather much for so small change.

[1] http://www.spinics.net/lists/linux-media/msg31968.htmlSigned-off-by: NAntti Palosaari <crope@iki.fi>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 bedbf3d1
...@@ -566,7 +566,7 @@ static int cx24116_load_firmware(struct dvb_frontend *fe, ...@@ -566,7 +566,7 @@ static int cx24116_load_firmware(struct dvb_frontend *fe,
{ {
struct cx24116_state *state = fe->demodulator_priv; struct cx24116_state *state = fe->demodulator_priv;
struct cx24116_cmd cmd; struct cx24116_cmd cmd;
int i, ret, len, remaining; int i, ret, len, max, remaining;
unsigned char vers[4]; unsigned char vers[4];
dprintk("%s\n", __func__); dprintk("%s\n", __func__);
...@@ -604,14 +604,16 @@ static int cx24116_load_firmware(struct dvb_frontend *fe, ...@@ -604,14 +604,16 @@ static int cx24116_load_firmware(struct dvb_frontend *fe,
cx24116_writereg(state, 0xF6, 0x00); cx24116_writereg(state, 0xF6, 0x00);
/* Split firmware to the max I2C write len and write. /* Split firmware to the max I2C write len and write.
* This overflows 16 bit intentionally in order to get max write * Writes whole firmware as one write when i2c_wr_max is set to 0. */
* len when i2c_wr_max is set to 0. */ if (state->config->i2c_wr_max)
for (remaining = fw->size; remaining > 0; max = state->config->i2c_wr_max;
remaining -= (u16) (state->config->i2c_wr_max - 1)) { else
max = INT_MAX; /* enough for 32k firmware */
for (remaining = fw->size; remaining > 0; remaining -= max - 1) {
len = remaining; len = remaining;
if (len > (u16) (state->config->i2c_wr_max - 1)) if (len > max - 1)
len = (u16) (state->config->i2c_wr_max - 1); len = max - 1;
cx24116_writeregN(state, 0xF7, &fw->data[fw->size - remaining], cx24116_writeregN(state, 0xF7, &fw->data[fw->size - remaining],
len); len);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册