Stephen Boyd <[email protected]> writes: > It looks like this code is missing braces, otherwise the if > statement shouldn't have been indented. Fix it. > > Signed-off-by: Stephen Boyd <[email protected]> > --- > drivers/thermal/of-thermal.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/thermal/of-thermal.c b/drivers/thermal/of-thermal.c > index 04b1be7fa018..a95ee2889b19 100644 > --- a/drivers/thermal/of-thermal.c > +++ b/drivers/thermal/of-thermal.c > @@ -712,11 +712,12 @@ thermal_of_build_thermal_zone(struct device_node *np) > } > > i = 0; > - for_each_child_of_node(child, gchild) > + for_each_child_of_node(child, gchild) { > ret = thermal_of_populate_bind_params(gchild, &tz->tbps[i++], > tz->trips, tz->ntrips); > if (ret) > goto free_tbps; > + } > > finish: > of_node_put(child);
Looks good to me. Reviewed-by: Punit Agrawal <[email protected]> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

