mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-05-30 19:15:41 +00:00
sound: oss: Remove useless initialisation
Remove useless initialisation of variable whose value is reinitialised later. The Coccinelle semantic patch used to make this change is as follows: @@ type T; identifier x; constant C; expression e; @@ T x - = C ; x = e; Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
a5d48be457
commit
dfa40d3e36
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ static void ad_write(ad1848_info * devc, int reg, int data)
|
|||
|
||||
static void wait_for_calibration(ad1848_info * devc)
|
||||
{
|
||||
int timeout = 0;
|
||||
int timeout;
|
||||
|
||||
/*
|
||||
* Wait until the auto calibration process has finished.
|
||||
|
|
Loading…
Add table
Reference in a new issue