mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[media] bt8xx: Delete unnecessary variable initialisations in ca_send_message()
Two local variables will be set to an appropriate value a bit later. Thus omit the explicit initialisation at the beginning. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
6e531f104c
commit
8726650a1a
1 changed files with 2 additions and 3 deletions
|
@ -475,9 +475,8 @@ static int dst_check_ca_pmt(struct dst_state *state, struct ca_msg *p_ca_message
|
|||
|
||||
static int ca_send_message(struct dst_state *state, struct ca_msg *p_ca_message, void __user *arg)
|
||||
{
|
||||
int i = 0;
|
||||
|
||||
u32 command = 0;
|
||||
int i;
|
||||
u32 command;
|
||||
struct ca_msg *hw_buffer;
|
||||
int result = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue