Commit 3d6a3beb authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab

V4L/DVB (9454): Fix a compile warning

Signed-off-by: default avatarManu Abraham <manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 85eabac4
...@@ -444,7 +444,7 @@ int stb0899_write_s2reg(struct stb0899_state *state, ...@@ -444,7 +444,7 @@ int stb0899_write_s2reg(struct stb0899_state *state,
return status < 0 ? status : -EREMOTEIO; return status < 0 ? status : -EREMOTEIO;
} }
int stb0899_read_regs(struct stb0899_state *state, unsigned int reg, u8 *buf, size_t count) int stb0899_read_regs(struct stb0899_state *state, unsigned int reg, u8 *buf, u32 count)
{ {
int status; int status;
......
...@@ -238,7 +238,7 @@ extern u32 _stb0899_read_s2reg(struct stb0899_state *state, ...@@ -238,7 +238,7 @@ extern u32 _stb0899_read_s2reg(struct stb0899_state *state,
extern int stb0899_read_regs(struct stb0899_state *state, extern int stb0899_read_regs(struct stb0899_state *state,
unsigned int reg, u8 *buf, unsigned int reg, u8 *buf,
size_t count); u32 count);
extern int stb0899_write_regs(struct stb0899_state *state, extern int stb0899_write_regs(struct stb0899_state *state,
unsigned int reg, u8 *data, unsigned int reg, u8 *data,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment