Skip to content

Commit

Permalink
[ARM] fix netx
Browse files Browse the repository at this point in the history
2fcfe6b missed out on the cpumask
updates; update netx for these changes.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jan 8, 2009
1 parent 18b2085 commit 2927926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-netx/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ static void __init netx_timer_init(void)
* Adding some safety ... */
netx_clockevent.min_delta_ns =
clockevent_delta2ns(0xa00, &netx_clockevent);
netx_clockevent.cpumask = cpumask_of_cpu(0);
netx_clockevent.cpumask = cpumask_of(0);
clockevents_register_device(&netx_clockevent);
}

Expand Down

0 comments on commit 2927926

Please sign in to comment.