mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[MIPS] Ocelot G: Use CPU_MASK_NONE instead of 0 to initialize cpu mask.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
c183f1224b
commit
3d5d440176
1 changed files with 1 additions and 1 deletions
|
@ -178,7 +178,7 @@ void gt64240_time_init(void)
|
|||
timer.name = "timer";
|
||||
timer.dev_id = NULL;
|
||||
timer.next = NULL;
|
||||
timer.mask = 0;
|
||||
timer.mask = CPU_MASK_NONE;
|
||||
irq_desc[6].action = &timer;
|
||||
|
||||
enable_irq(6);
|
||||
|
|
Loading…
Reference in a new issue