On Tue, Sep 23, 2014 at 08:58:06AM +0100, Simon Vincent wrote: > I was under the impression the patch had been signed off. Maybe I missed a > mail... mhh, I didn't see any signed-off or acked-by from alan. Maybe just cc linux-wpan or me there. > I can confirm the mrf24j40 works just fine using a DT. > Yes basically this works, because dt have some out of the box feature to load devices at boottime by modulename. Normally you have some compatible names for your device like: static const struct of_device_id at86rf230_of_match[] = { { .compatible = "atmel,at86rf230", }, { .compatible = "atmel,at86rf231", }, { .compatible = "atmel,at86rf233", }, { .compatible = "atmel,at86rf212", }, { }, }; MODULE_DEVICE_TABLE(of, at86rf230_of_match); the mrf24j40 works for dt and has no platform data or something else. But it's different than make the driver dt-enabled. It's only working because DT allows to load modules by modulenames. - Alex -- To unsubscribe from this list: send the line "unsubscribe linux-wpan" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html