From mboxrd@z Thu Jan 1 00:00:00 1970 From: linux@arm.linux.org.uk (Russell King - ARM Linux) Date: Fri, 3 May 2013 23:24:06 +0100 Subject: [RFC patch 4/8] genirq: generic chip: Cache per irq bit mask In-Reply-To: <20130503214629.599155322@linutronix.de> References: <20130503212258.385818955@linutronix.de> <20130503214629.599155322@linutronix.de> Message-ID: <20130503222406.GG18614@n2100.arm.linux.org.uk> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Fri, May 03, 2013 at 09:50:50PM -0000, Thomas Gleixner wrote: > - u32 mask = ~(1 << (d->irq - gc->irq_base)); > + u32 mask = ~(d->mask); I suspect the above changes are all a result of a search-and-replace which results in the cosmetic parens remaining. Would be nice to get rid of them too as they're completely unnecessary.