Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fc0830fe authored by Magnus Damm's avatar Magnus Damm Committed by Thomas Gleixner
Browse files

clocksource: em_sti: Add DT support



Update the em-sti driver to support DT.

Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Cc: arnd@arndb.de
Cc: horms@verge.net.au
Cc: johnstul@us.ibm.com
Cc: rjw@sisk.pl
Cc: lethal@linux-sh.org
Cc: gregkh@linuxfoundation.org
Cc: olof@lixom.net
Link: http://lkml.kernel.org/r/20120509143950.27521.7949.sendpatchset@w520


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent b9dbf951
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -384,11 +384,18 @@ static int __devexit em_sti_remove(struct platform_device *pdev)
	return -EBUSY; /* cannot unregister clockevent and clocksource */
}

static const struct of_device_id em_sti_dt_ids[] __devinitconst = {
	{ .compatible = "renesas,em-sti", },
	{},
};
MODULE_DEVICE_TABLE(of, em_sti_dt_ids);

static struct platform_driver em_sti_device_driver = {
	.probe		= em_sti_probe,
	.remove		= __devexit_p(em_sti_remove),
	.driver		= {
		.name	= "em_sti",
		.of_match_table = em_sti_dt_ids,
	}
};