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 ab0bbef commit 4e32036Copy full SHA for 4e32036
drivers/clocksource/timer-ti-dm.c
@@ -1036,6 +1036,10 @@ static const struct dmtimer_platform_data omap3plus_pdata = {
1036
.timer_ops = &dmtimer_ops,
1037
};
1038
1039
+static const struct dmtimer_platform_data am6_pdata = {
1040
+ .timer_ops = &dmtimer_ops,
1041
+};
1042
+
1043
static const struct of_device_id omap_timer_match[] = {
1044
{
1045
.compatible = "ti,omap2420-timer",
@@ -1064,6 +1068,10 @@ static const struct of_device_id omap_timer_match[] = {
1064
1068
.compatible = "ti,dm816-timer",
1065
1069
.data = &omap3plus_pdata,
1066
1070
},
1071
+ {
1072
+ .compatible = "ti,am654-timer",
1073
+ .data = &am6_pdata,
1074
+ },
1067
1075
{},
1076
1077
MODULE_DEVICE_TABLE(of, omap_timer_match);
0 commit comments