On 04/01/2013 10:40 PM, Tony Prisk wrote: > Sorry - got Linus W's email address wrong in first send. > > v4 changes: > Changed as requested by Stephen Warren: > Corrected the range checking in of_property_read_u32_index(). > Fix configs[0] assignment in wmt_pctl_dt_node_to_map_pull(). > Move the platform memory mapping from per-soc to common init. > Drop the custom .of_xlate function and use the default of_gpio_simple_xlate.
Those changes all look fine. > Remove the kfree(maps) call, and use devm_kzalloc to simplify the fail path. I'm not sure that's a good idea. The issue is that dt_node_to_maps() is called every time a pinctrl consumer is probed, whereas the devm_kzalloc() call in dt_node_to_maps() uses the pinctrl device itself, not the pinctrl consumer device.. Each client's probe() could be deferred a few times. Hence, you may end up accumulating all those map entries from the deferred probes, until the pinctrl driver itself is remove()d. Similarly, if you unload/load a (pinctrl client) driver module over and over, the same thing will happen. Oh, and you left the following in there too: > +static void wmt_pctl_dt_free_map(struct pinctrl_dev *pctldev, > + kfree(maps); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/