Hi Paul, <<snip>> ... > + > +int omap2_wd_timer_disable(struct omap_hwmod *oh) > +{ > + void __iomem *base; > + int ret; > + > + if (!oh) { > + pr_err("%s: Could not look up wdtimer_hwmod\n", __func__); > + return -EINVAL; > + } > + Just a minor observation. I was wondering if we need this check because omap_hwmod_for_each_by_class(...) would call this only for valid oh. list_for_each_entry(temp_oh, &omap_hwmod_list, node) { if (!strcmp(temp_oh->class->name, classname)) { pr_debug("omap_hwmod: %s: %s: calling callback fn\n", __func__, temp_oh->name); ret = (*fn)(temp_oh, user); -- Tarun -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html