static const struct of_device_id vain_match[] = { { .compatible = "example,vain", }, { /* end of table */ } }; static struct platform_driver vain_plat_driver = { .driver = { .name = "vain_plat", .owner = THIS_MODULE, .of_match_table = vain_match, }, .probe = vain_plat_probe, .remove = __devexit_p(vain_plat_remove), };