Skip to content

Commit

Permalink
Merge branch 'ux500/asic-id' into next/soc
Browse files Browse the repository at this point in the history
* ux500/asic-id:
  ARM: ux500: Correct Ux500 family names usage
  • Loading branch information
Olof Johansson committed Sep 5, 2012
2 parents c127036 + 79964bc commit daa56a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-ux500/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static unsigned long clk_mtu_get_rate(struct clk *clk)
unsigned long mturate;
unsigned long retclk;

if (cpu_is_u8500_family())
if (cpu_is_u8500_family() || cpu_is_ux540_family())
addr = __io_address(U8500_PRCMU_BASE);
else
ux500_unknown_soc();
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-ux500/platsmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static void __init wakeup_secondary(void)
{
void __iomem *backupram;

if (cpu_is_u8500_family())
if (cpu_is_u8500_family() || cpu_is_ux540_family())
backupram = __io_address(U8500_BACKUPRAM0_BASE);
else
ux500_unknown_soc();
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-ux500/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ static void __init ux500_timer_init(void)
void __iomem *tmp_base;
struct device_node *np;

if (cpu_is_u8500_family()) {
if (cpu_is_u8500_family() || cpu_is_ux540_family()) {
mtu_timer_base = __io_address(U8500_MTU0_BASE);
prcmu_timer_base = __io_address(U8500_PRCMU_TIMER_4_BASE);
} else {
Expand Down

0 comments on commit daa56a0

Please sign in to comment.