Revision cfca31ce789963c0dd6ca2e9cc13b90cc2802fbd authored by Julia Lawall on 27 May 2010, 12:32:24 UTC, committed by Wim Van Sebroeck on 07 June 2010, 15:55:03 UTC
At the point of the call to dev_err, wm8350 is NULL.

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

// <smpl>
@r exists@
expression E,E1;
identifier f;
statement S1,S2,S3;
@@

if ((E == NULL && ...) || ...)
{
  ... when != if (...) S1 else S2
      when != E = E1
* E->f
  ... when any
  return ...;
}
else S3
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>

1 parent 386f40c
History
File Mode Size
Kconfig -rw-r--r-- 686 bytes
Makefile -rw-r--r-- 182 bytes
vxfs.h -rw-r--r-- 9.1 KB
vxfs_bmap.c -rw-r--r-- 7.2 KB
vxfs_dir.h -rw-r--r-- 3.2 KB
vxfs_extern.h -rw-r--r-- 3.0 KB
vxfs_fshead.c -rw-r--r-- 5.4 KB
vxfs_fshead.h -rw-r--r-- 2.5 KB
vxfs_immed.c -rw-r--r-- 3.5 KB
vxfs_inode.c -rw-r--r-- 8.8 KB
vxfs_inode.h -rw-r--r-- 5.4 KB
vxfs_lookup.c -rw-r--r-- 8.1 KB
vxfs_olt.c -rw-r--r-- 3.6 KB
vxfs_olt.h -rw-r--r-- 4.4 KB
vxfs_subr.c -rw-r--r-- 4.6 KB
vxfs_super.c -rw-r--r-- 7.3 KB

back to top