dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/drivers/staging/go7007
Ilia Mirkin 56d1763970 staging: go7007: Remove NULL check before kfree
This patch was generated by the following semantic patch:
// <smpl>
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);

@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// </smpl>

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2011-03-14 11:57:32 -07:00
..
Kconfig
Makefile
README
go7007-driver.c
go7007-fw.c
go7007-i2c.c
go7007-priv.h
go7007-usb.c
go7007-v4l2.c
go7007.h
go7007.txt
s2250-board.c
s2250-loader.c
s2250-loader.h
saa7134-go7007.c
snd-go7007.c
wis-i2c.h
wis-ov7640.c
wis-saa7113.c
wis-saa7115.c
wis-sony-tuner.c
wis-tw2804.c
wis-tw9903.c
wis-uda1342.c

README

Todo:
	- checkpatch.pl cleanups
	- sparse cleanups
	- lots of little modules, should be merged together
	  and added to the build.
	- testing?
	- handle churn in v4l layer.

Please send patchs to Greg Kroah-Hartman <greg@kroah.com> and Cc: Ross
Cohen <rcohen@snurgle.org> as well.