aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-10-18 16:11:13 +0200
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-10-18 16:29:24 -0700
commit02ffc5f3f91c265e110ddd1fdd7019a18426ebe5 (patch)
tree0243071f64cda3a3a11de7c6a93635e69d49b38f /include/sound
parentRevert "ASoC: Add max98088 CODEC driver" (diff)
downloadlinux-dev-02ffc5f3f91c265e110ddd1fdd7019a18426ebe5.tar.xz
linux-dev-02ffc5f3f91c265e110ddd1fdd7019a18426ebe5.zip
ASoC: davinci-mcasp.c: Return error code in failure
In this code, 0 is returned on failure, even though other failures return -ENOMEM or other similar values. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @a@ identifier alloc; identifier ret; constant C; expression x; @@ x = alloc(...); if (x == NULL) { <+... \(ret = -C; \| return -C; \) ...+> } @@ identifier f, a.alloc; expression ret; expression x,e1,e2,e3; @@ ret = 0 ... when != ret = e1 *x = alloc(...) ... when != ret = e2 if (x == NULL) { ... when != ret = e3 return ret; } // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/sound')
0 files changed, 0 insertions, 0 deletions