[<prev] [next>] [day] [month] [year] [list]
Message-Id: <5338d375.45ac440a.2163.3105@mx.google.com>
Date: Mon, 31 Mar 2014 10:30:55 +0800
From: zhouzhouyi@...il.com
To: <len.brown@...el.com>, <pavel@....cz>, <rjw@...ysocki.net>,
<tglx@...utronix.de>, <mingo@...hat.com>, <hpa@...or.com>,
<x86@...nel.org>, <linux-pm@...r.kernel.org>,
<linux-kernel@...r.kernel.org>
Cc: Zhouyi Zhou <zhouzhouyi@...il.com>,
Zhouyi Zhou <yizhouzhou@....ac.cn>
Subject: [PATCH RFC] ACPI: (x86) remove useless initial assignment in gsi_to_irq
From: Zhouyi Zhou <zhouzhouyi@...il.com>
I think in function gsi_to_irq, initial assignment to irq is useless although compiler
may eliminate it during the compilng.
Signed-off-by: Zhouyi Zhou <yizhouzhou@....ac.cn>
---
arch/x86/kernel/acpi/boot.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c
index 1dac942..b93d61e 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -103,7 +103,7 @@ static u32 isa_irq_to_gsi[NR_IRQS_LEGACY] __read_mostly = {
static unsigned int gsi_to_irq(unsigned int gsi)
{
- unsigned int irq = gsi + NR_IRQS_LEGACY;
+ unsigned int irq;
unsigned int i;
for (i = 0; i < NR_IRQS_LEGACY; i++) {
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists