Skip to content

Commit

Permalink
[media] drivers/media/video/hexium_gemini.c: delete useless initializ…
Browse files Browse the repository at this point in the history
…ation

Delete nontrivial initialization that is immediately overwritten by the
result of an allocation function.

The semantic match that makes this change is as follows:

// <smpl>
@@
type T;
identifier i;
expression e;
@@

(
T i = \(0\|NULL\|ERR_PTR(...)\);
|
-T i = e;
+T i;
)
... when != i
i = \(kzalloc\|kcalloc\|kmalloc\)(...);

// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Julia Lawall authored and Mauro Carvalho Chehab committed Sep 3, 2011
1 parent f8dbab2 commit f00fd91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/hexium_gemini.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static struct saa7146_ext_vv vv_data;
/* this function only gets called when the probing was successful */
static int hexium_attach(struct saa7146_dev *dev, struct saa7146_pci_extension_data *info)
{
struct hexium *hexium = (struct hexium *) dev->ext_priv;
struct hexium *hexium;
int ret;

DEB_EE((".\n"));
Expand Down

0 comments on commit f00fd91

Please sign in to comment.