[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-77c858fa343bb09cc3fe1456fda5710c974845b9@git.kernel.org>
Date: Mon, 16 Oct 2017 12:10:15 -0700
From: tip-bot for Ladislav Michl <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: marc.zyngier@....com, hpa@...or.com, linux-kernel@...r.kernel.org,
mingo@...nel.org, ladis@...ux-mips.org, tglx@...utronix.de,
jason@...edaemon.net, tony@...mide.com
Subject: [tip:irq/core] irqchip/irq-omap-intc: Do not statically initialize
variables
Commit-ID: 77c858fa343bb09cc3fe1456fda5710c974845b9
Gitweb: https://git.kernel.org/tip/77c858fa343bb09cc3fe1456fda5710c974845b9
Author: Ladislav Michl <ladis@...ux-mips.org>
AuthorDate: Mon, 16 Oct 2017 18:13:03 +0200
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Mon, 16 Oct 2017 21:05:14 +0200
irqchip/irq-omap-intc: Do not statically initialize variables
omap_nr_pending and omap_nr_irqs variables are initialized
right at the beginning of intc_of_init function, so there's
no need to statically initialize them.
Signed-off-by: Ladislav Michl <ladis@...ux-mips.org>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Cc: Marc Zyngier <marc.zyngier@....com>
Cc: Tony Lindgren <tony@...mide.com>
Cc: linux-omap@...r.kernel.org
Cc: Jason Cooper <jason@...edaemon.net>
Link: https://lkml.kernel.org/r/20171016161303.veumgcd3xom5c54r@lenoch
---
drivers/irqchip/irq-omap-intc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
index 05f7f06..d360a6e 100644
--- a/drivers/irqchip/irq-omap-intc.c
+++ b/drivers/irqchip/irq-omap-intc.c
@@ -66,8 +66,8 @@ static struct omap_intc_regs intc_context;
static struct irq_domain *domain;
static void __iomem *omap_irq_base;
-static int omap_nr_pending = 3;
-static int omap_nr_irqs = 96;
+static int omap_nr_pending;
+static int omap_nr_irqs;
static void intc_writel(u32 reg, u32 val)
{
Powered by blists - more mailing lists