[PATCH v2] genirq: Remove duplicate assignments
From: cgel . zte
Date: Thu Nov 04 2021 - 02:46:23 EST
From: luo penghao <luo.penghao@xxxxxxxxxx>
The variable has performed the same assignment twice.
The clang_analyzer complains as follows:
kernel/irq/matrix.c:289:25 warning:
Value stored to 'end' during its initialization is never read
change in v2:
Repair the sending email box
Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
Signed-off-by: luo penghao <luo.penghao@xxxxxxxxxx>
---
kernel/irq/matrix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/irq/matrix.c b/kernel/irq/matrix.c
index 578596e..0469f30 100644
--- a/kernel/irq/matrix.c
+++ b/kernel/irq/matrix.c
@@ -285,7 +285,7 @@ void irq_matrix_remove_managed(struct irq_matrix *m, const struct cpumask *msk)
int irq_matrix_alloc_managed(struct irq_matrix *m, const struct cpumask *msk,
unsigned int *mapped_cpu)
{
- unsigned int bit, cpu, end = m->alloc_end;
+ unsigned int bit, cpu, end;
struct cpumap *cm;
if (cpumask_empty(msk))
--
2.15.2