linux/drivers/media/platform/marvell-ccic
Julia Lawall 5be789fc84 [media] marvell-ccic/mmp-driver.c: simplify use of devm_ioremap_resource
Remove unneeded error handling on the result of a call to
platform_get_resource when the value is passed to devm_ioremap_resource.
A simplified version of the semantic patch that makes this change is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression pdev,res,n,e,e1;
expression ret != 0;
identifier l;
@@
- res = platform_get_resource(pdev, IORESOURCE_MEM, n);
  ... when != res
- if (res == NULL) { ... \(goto l;\|return ret;\) }
  ... when != res
+ res = platform_get_resource(pdev, IORESOURCE_MEM, n);
  e = devm_ioremap_resource(e1, res);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2013-08-22 12:45:23 -03:00
..
Kconfig [media] rename drivers/media/video as .../platform 2012-08-15 16:43:09 -03:00
Makefile [media] rename drivers/media/video as .../platform 2012-08-15 16:43:09 -03:00
cafe-driver.c [media] marvell-ccic: add MIPI support for marvell-ccic driver 2013-07-26 13:22:42 -03:00
mcam-core.c [media] marvell-ccic: add SOF / EOF pair check for marvell-ccic driver 2013-07-26 13:26:13 -03:00
mcam-core.h [media] marvell-ccic: add new formats support for marvell-ccic driver 2013-07-26 13:25:32 -03:00
mmp-driver.c [media] marvell-ccic/mmp-driver.c: simplify use of devm_ioremap_resource 2013-08-22 12:45:23 -03:00