projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e04f99c
)
x86: small sparse fix in process_32.c
author
Harvey Harrison
<harvey.harrison@gmail.com>
Mon, 4 Feb 2008 15:48:04 +0000
(16:48 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Mon, 4 Feb 2008 15:48:04 +0000
(16:48 +0100)
arch/x86/kernel/process_32.c:254:43: warning: Using plain integer as NULL pointer
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/process_32.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/process_32.c
b/arch/x86/kernel/process_32.c
index 968371ab223a250b59117d4fad4df43c247c104a..dabdbeff1f778685af46cb66b465ec0e36c71a02 100644
(file)
--- a/
arch/x86/kernel/process_32.c
+++ b/
arch/x86/kernel/process_32.c
@@
-251,7
+251,7
@@
void cpu_idle_wait(void)
* because it has nothing to do.
* Give all the remaining CPUS a kick.
*/
- smp_call_function_mask(map, do_nothing,
0
, 0);
+ smp_call_function_mask(map, do_nothing,
NULL
, 0);
} while (!cpus_empty(map));
set_cpus_allowed(current, tmp);