Skip to content

Commit 039cc1c

Browse files
dgerlachrafaeljw
authored andcommitted
cpufreq: ti-cpufreq: Support additional am43xx platforms
Rather than letting the ti-cpufreq driver match against 'ti,am4372' machine compatible during probe let's match against 'ti,am43' so that we can support both 'ti,am4372' and 'ti,am438x' platforms which both match to this compatible. Signed-off-by: Dave Gerlach <[email protected]> Acked-by: Viresh Kumar <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent ff76898 commit 039cc1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/cpufreq/ti-cpufreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ static int ti_cpufreq_setup_syscon_register(struct ti_cpufreq_data *opp_data)
190190

191191
static const struct of_device_id ti_cpufreq_of_match[] = {
192192
{ .compatible = "ti,am33xx", .data = &am3x_soc_data, },
193-
{ .compatible = "ti,am4372", .data = &am4x_soc_data, },
193+
{ .compatible = "ti,am43", .data = &am4x_soc_data, },
194194
{ .compatible = "ti,dra7", .data = &dra7_soc_data },
195195
{},
196196
};

0 commit comments

Comments
 (0)