]> git.karo-electronics.de Git - linux-beck.git/commit
sound: oss: Remove useless initialisation
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Tue, 12 Jul 2016 03:24:35 +0000 (08:54 +0530)
committerTakashi Iwai <tiwai@suse.de>
Tue, 12 Jul 2016 06:06:10 +0000 (08:06 +0200)
commitdfa40d3e3686591f7c30990c67f11b5d30f4527f
treec94e6befbb0fa3321d3f5092e9d48b5911e7703b
parenta5d48be457273e4faf34a2033c63f8890f3f9c6c
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>
sound/oss/ad1848.c