projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24e419a
)
[media] it913x: make checkpatch.pl happy
author
Antti Palosaari
<crope@iki.fi>
Sat, 9 Aug 2014 18:02:14 +0000
(15:02 -0300)
committer
Mauro Carvalho Chehab
<mchehab@osg.samsung.com>
Sun, 21 Sep 2014 20:44:12 +0000
(17:44 -0300)
Correct issues reported by checkpatch.pl
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/tuners/tuner_it913x.c
patch
|
blob
|
history
diff --git
a/drivers/media/tuners/tuner_it913x.c
b/drivers/media/tuners/tuner_it913x.c
index 281d8c5cc0a96f30b4e0d6899a4259faa900fa7a..b92d59979437c38afbaacc71690e2b47652c4020 100644
(file)
--- a/
drivers/media/tuners/tuner_it913x.c
+++ b/
drivers/media/tuners/tuner_it913x.c
@@
-46,6
+46,7
@@
static int it913x_rd_regs(struct it913x_state *state,
{ .addr = state->i2c_addr, .flags = I2C_M_RD,
.buf = data, .len = count }
};
+
b[0] = (u8)(reg >> 16) & 0xff;
b[1] = (u8)(reg >> 8) & 0xff;
b[2] = (u8) reg & 0xff;
@@
-61,6
+62,7
@@
static int it913x_rd_reg(struct it913x_state *state, u32 reg)
{
int ret;
u8 b[1];
+
ret = it913x_rd_regs(state, reg, &b[0], sizeof(b));
return (ret < 0) ? -ENODEV : b[0];
}
@@
-75,6
+77,7
@@
static int it913x_wr_regs(struct it913x_state *state,
.buf = b, .len = 3 + count }
};
int ret;
+
b[0] = (u8)(reg >> 16) & 0xff;
b[1] = (u8)(reg >> 8) & 0xff;
b[2] = (u8) reg & 0xff;
@@
-122,6
+125,7
@@
static int it913x_script_loader(struct it913x_state *state,
struct it913xset *loadscript)
{
int ret, i;
+
if (loadscript == NULL)
return -EINVAL;