Commit c6e78d70 authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Tony Lindgren

bus: ti-sysc: Change return types of functions

Change return type of functions sysc_check_one_child() and
sysc_check_children() from int to void as neither ever returns an error.
Modify call sites of both functions accordingly.
Signed-off-by: default avatarNishka Dasgupta <nishkadg.linux@gmail.com>
Acked-by: default avatarRoger Quadros <rogerq@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent c8a738f4
...@@ -613,8 +613,8 @@ static void sysc_check_quirk_stdout(struct sysc *ddata, ...@@ -613,8 +613,8 @@ static void sysc_check_quirk_stdout(struct sysc *ddata,
* node but children have "ti,hwmods". These belong to the interconnect * node but children have "ti,hwmods". These belong to the interconnect
* target node and are managed by this driver. * target node and are managed by this driver.
*/ */
static int sysc_check_one_child(struct sysc *ddata, static void sysc_check_one_child(struct sysc *ddata,
struct device_node *np) struct device_node *np)
{ {
const char *name; const char *name;
...@@ -624,22 +624,14 @@ static int sysc_check_one_child(struct sysc *ddata, ...@@ -624,22 +624,14 @@ static int sysc_check_one_child(struct sysc *ddata,
sysc_check_quirk_stdout(ddata, np); sysc_check_quirk_stdout(ddata, np);
sysc_parse_dts_quirks(ddata, np, true); sysc_parse_dts_quirks(ddata, np, true);
return 0;
} }
static int sysc_check_children(struct sysc *ddata) static void sysc_check_children(struct sysc *ddata)
{ {
struct device_node *child; struct device_node *child;
int error;
for_each_child_of_node(ddata->dev->of_node, child) {
error = sysc_check_one_child(ddata, child);
if (error)
return error;
}
return 0; for_each_child_of_node(ddata->dev->of_node, child)
sysc_check_one_child(ddata, child);
} }
/* /*
...@@ -792,9 +784,7 @@ static int sysc_map_and_check_registers(struct sysc *ddata) ...@@ -792,9 +784,7 @@ static int sysc_map_and_check_registers(struct sysc *ddata)
if (error) if (error)
return error; return error;
error = sysc_check_children(ddata); sysc_check_children(ddata);
if (error)
return error;
error = sysc_parse_registers(ddata); error = sysc_parse_registers(ddata);
if (error) if (error)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment