| Submitter | Julia Lawall |
|---|---|
| Date | Aug. 19, 2012, 8:44 a.m. |
| Message ID | <1345365870-29831-8-git-send-email-Julia.Lawall@lip6.fr> |
| Download | mbox | patch |
| Permalink | /patch/178548/ |
| State | New |
| Headers | show |
Comments
On Sun, 2012-08-19 at 10:44 +0200, Julia Lawall wrote: > From: Julia Lawall <Julia.Lawall@lip6.fr> > > Err has only been initialized to 0 at this, so it is not possible that this > test can be true. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) Pushed to l2-mt.git, thanks!
Patch
diff --git a/drivers/mtd/maps/rbtx4939-flash.c b/drivers/mtd/maps/rbtx4939-flash.c index 6f52e1f..49c3fe7 100644 --- a/drivers/mtd/maps/rbtx4939-flash.c +++ b/drivers/mtd/maps/rbtx4939-flash.c @@ -100,8 +100,6 @@ static int rbtx4939_flash_probe(struct platform_device *dev) goto err_out; } info->mtd->owner = THIS_MODULE; - if (err) - goto err_out; err = mtd_device_parse_register(info->mtd, NULL, NULL, pdata->parts, pdata->nr_parts);