Skip to content

Commit

Permalink
ARM: OMAP4: Register the OPP table only for 4430 device
Browse files Browse the repository at this point in the history
The 4430 OPP table was being registered for all other OMAP4 variants
too, like 4460 and 4470 causing issues with cpufreq driver
enabled. 4460 and 4470 devices have different OPPs as compared to
4430, and they should be populated seperately. As long as that
happens, let the OPP table registeration happen only on 4430 device.

Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
  • Loading branch information
Rajendra Nayak authored and Kevin Hilman committed Aug 9, 2012
1 parent 1b86521 commit 196449d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/opp4xxx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ int __init omap4_opp_init(void)
{
int r = -ENODEV;

if (!cpu_is_omap44xx())
if (!cpu_is_omap443x())
return r;

r = omap_init_opp_table(omap44xx_opp_def_list,
Expand Down

0 comments on commit 196449d

Please sign in to comment.