diff options
Diffstat (limited to 'drivers/rtc/rtc-tegra.c')
| -rw-r--r-- | drivers/rtc/rtc-tegra.c | 13 | 
1 files changed, 10 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-tegra.c b/drivers/rtc/rtc-tegra.c index c006025cecc..c84ea6659f4 100644 --- a/drivers/rtc/rtc-tegra.c +++ b/drivers/rtc/rtc-tegra.c @@ -303,7 +303,13 @@ static struct rtc_class_ops tegra_rtc_ops = {  	.alarm_irq_enable = tegra_rtc_alarm_irq_enable,  }; -static int __devinit tegra_rtc_probe(struct platform_device *pdev) +static const struct of_device_id tegra_rtc_dt_match[] = { +	{ .compatible = "nvidia,tegra20-rtc", }, +	{} +}; +MODULE_DEVICE_TABLE(of, tegra_rtc_dt_match); + +static int tegra_rtc_probe(struct platform_device *pdev)  {  	struct tegra_rtc_info *info;  	struct resource *res; @@ -375,7 +381,7 @@ err_dev_unreg:  	return ret;  } -static int __devexit tegra_rtc_remove(struct platform_device *pdev) +static int tegra_rtc_remove(struct platform_device *pdev)  {  	struct tegra_rtc_info *info = platform_get_drvdata(pdev); @@ -435,11 +441,12 @@ static void tegra_rtc_shutdown(struct platform_device *pdev)  MODULE_ALIAS("platform:tegra_rtc");  static struct platform_driver tegra_rtc_driver = { -	.remove		= __devexit_p(tegra_rtc_remove), +	.remove		= tegra_rtc_remove,  	.shutdown	= tegra_rtc_shutdown,  	.driver		= {  		.name	= "tegra_rtc",  		.owner	= THIS_MODULE, +		.of_match_table = tegra_rtc_dt_match,  	},  #ifdef CONFIG_PM  	.suspend	= tegra_rtc_suspend,  |