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:
3dd3d46
)
genirq: remove redundant if condition
author
Thomas Gleixner
<tglx@linutronix.de>
Mon, 9 Mar 2009 19:26:23 +0000
(20:26 +0100)
committer
Thomas Gleixner
<tglx@linutronix.de>
Fri, 13 Mar 2009 13:32:28 +0000
(14:32 +0100)
Impact: cleanup
The code is only compiled if CONFIG_GENERIC_HARDIRQS=y so another
check for this define in the code is redundant. Remove it.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/manage.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/irq/manage.c
b/kernel/irq/manage.c
index e28db0f656acbb55510e86b76640a9c25393be72..4600f877c29283d5b9777e42ee3bd6f207a68bab 100644
(file)
--- a/
kernel/irq/manage.c
+++ b/
kernel/irq/manage.c
@@
-15,7
+15,7
@@
#include "internals.h"
-#if
defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS)
+#if
def CONFIG_SMP
cpumask_var_t irq_default_affinity;
/**