On Sat, Feb 9, 2013 at 9:44 PM, Javier Martinez Canillas <javier.martinez@xxxxxxxxxxxxxxx> wrote: > If no pinctrl is available just report a warning since > it may not needed in some cases (e.g: non-DT kernels). > > Signed-off-by: Javier Martinez Canillas <javier.martinez@xxxxxxxxxxxxxxx> (...) > + struct pinctrl *pinctrl; (...) > + pinctrl = devm_pinctrl_get_select_default(&pdev->dev); > + if (IS_ERR(pinctrl)) { > + retval = PTR_ERR(pinctrl); > + if (retval == -EPROBE_DEFER) > + goto out_0; > + > + dev_warn(&pdev->dev, "No pinctrl provided\n"); > + } NACK. This will be handled from the device core after the v3.9 merge window. See: http://marc.info/?l=linux-kernel&m=135887740715083&w=2 Yours, Linus Walleij -- 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