ALSA: au1x00: fix error return code
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 5 Apr 2015 12:06:33 +0000 (14:06 +0200)
committerTakashi Iwai <tiwai@suse.de>
Sun, 5 Apr 2015 16:04:27 +0000 (18:04 +0200)
commit646cb6dae4994eb332ddf7376520eed255c5a8b4
tree8b16d697b749a8096a92db3367615a02b453bfab
parenteab0fbfa41040f4f76b173cad17c0c8ed40cba33
ALSA: au1x00: fix error return code

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/mips/au1x00.c