Parcourir la source

[ARM] fix netx

2fcfe6b872b21639dcffbaf3ca2a84ec01d104e0 missed out on the cpumask
updates; update netx for these changes.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Russell King il y a 16 ans
Parent
commit
2927926707
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      arch/arm/mach-netx/time.c

+ 1 - 1
arch/arm/mach-netx/time.c

@@ -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);
 }