From: Julia Lawall Date: Thu, 4 Aug 2011 10:29:33 +0000 (-0300) Subject: [media] drivers/media/video/hexium_gemini.c: delete useless initialization X-Git-Tag: next-20110927~67^2~4^2~171 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f00fd919ef71b3d6d52dbfa7ce827679d92af713;p=karo-tx-linux.git [media] drivers/media/video/hexium_gemini.c: delete useless initialization Delete nontrivial initialization that is immediately overwritten by the result of an allocation function. The semantic match that makes this change is as follows: // @@ type T; identifier i; expression e; @@ ( T i = \(0\|NULL\|ERR_PTR(...)\); | -T i = e; +T i; ) ... when != i i = \(kzalloc\|kcalloc\|kmalloc\)(...); // Signed-off-by: Julia Lawall Acked-by: Jean Delvare Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/hexium_gemini.c b/drivers/media/video/hexium_gemini.c index cbc505a2fc29..b37c12f92ccc 100644 --- a/drivers/media/video/hexium_gemini.c +++ b/drivers/media/video/hexium_gemini.c @@ -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"));