From: Julia Lawall <hidden> Date: 2014-08-06 20:15:37
From: Julia Lawall <redacted>
Convert a zero return value on error to a negative one, as returned
elsewhere in the function.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
(
if@p1 (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <redacted>
---
The error codes chosen are the ones that are commonly used elsewhere or
these functions. Perhaps something else is wanted.
drivers/video/fbdev/atmel_lcdfb.c | 2 ++
1 file changed, 2 insertions(+)
@@ -1102,12 +1102,14 @@ static int atmel_lcdfb_of_init(struct atmel_lcdfb_info *sinfo)timings=of_get_display_timings(display_np);if(!timings){dev_err(dev,"failed to get display timings\n");+ret=-EINVAL;gotoput_display_node;}timings_np=of_find_node_by_name(display_np,"display-timings");if(!timings_np){dev_err(dev,"failed to find display-timings node\n");+ret=-ENODEV;gotoput_display_node;}
From: Nicolas Ferre <hidden> Date: 2014-08-11 10:25:38
On 06/08/2014 22:12, Julia Lawall :
From: Julia Lawall <redacted>
Convert a zero return value on error to a negative one, as returned
elsewhere in the function.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
(
if@p1 (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <redacted>
Okay, seems good patch:
Acked-by: Nicolas Ferre <redacted>
Thanks, best regards,
quoted hunk
---
The error codes chosen are the ones that are commonly used elsewhere or
these functions. Perhaps something else is wanted.
drivers/video/fbdev/atmel_lcdfb.c | 2 ++
1 file changed, 2 insertions(+)
@@ -1102,12 +1102,14 @@ static int atmel_lcdfb_of_init(struct atmel_lcdfb_info *sinfo)timings=of_get_display_timings(display_np);if(!timings){dev_err(dev,"failed to get display timings\n");+ret=-EINVAL;gotoput_display_node;}timings_np=of_find_node_by_name(display_np,"display-timings");if(!timings_np){dev_err(dev,"failed to find display-timings node\n");+ret=-ENODEV;gotoput_display_node;}
From: Tomi Valkeinen <hidden> Date: 2014-08-26 10:06:35
On 06/08/14 23:12, Julia Lawall wrote:
quoted hunk
From: Julia Lawall <redacted>
Convert a zero return value on error to a negative one, as returned
elsewhere in the function.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
(
if@p1 (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <redacted>
---
The error codes chosen are the ones that are commonly used elsewhere or
these functions. Perhaps something else is wanted.
drivers/video/fbdev/atmel_lcdfb.c | 2 ++
1 file changed, 2 insertions(+)
@@ -1102,12 +1102,14 @@ static int atmel_lcdfb_of_init(struct atmel_lcdfb_info *sinfo)timings=of_get_display_timings(display_np);if(!timings){dev_err(dev,"failed to get display timings\n");+ret=-EINVAL;gotoput_display_node;}timings_np=of_find_node_by_name(display_np,"display-timings");if(!timings_np){dev_err(dev,"failed to find display-timings node\n");+ret=-ENODEV;gotoput_display_node;}