We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9dbf95 commit fc0830fCopy full SHA for fc0830f
drivers/clocksource/em_sti.c
@@ -384,11 +384,18 @@ static int __devexit em_sti_remove(struct platform_device *pdev)
384
return -EBUSY; /* cannot unregister clockevent and clocksource */
385
}
386
387
+static const struct of_device_id em_sti_dt_ids[] __devinitconst = {
388
+ { .compatible = "renesas,em-sti", },
389
+ {},
390
+};
391
+MODULE_DEVICE_TABLE(of, em_sti_dt_ids);
392
+
393
static struct platform_driver em_sti_device_driver = {
394
.probe = em_sti_probe,
395
.remove = __devexit_p(em_sti_remove),
396
.driver = {
397
.name = "em_sti",
398
+ .of_match_table = em_sti_dt_ids,
399
400
};
401
0 commit comments