From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752597Ab1IHOw4 (ORCPT ); Thu, 8 Sep 2011 10:52:56 -0400 Received: from cantor2.suse.de ([195.135.220.15]:46917 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752455Ab1IHOwz (ORCPT ); Thu, 8 Sep 2011 10:52:55 -0400 Date: Thu, 8 Sep 2011 07:52:10 -0700 From: Greg KH To: Yong Zhang Cc: Marc Dietich , linux-kernel@vger.kernel.org, tglx@linutronix.de, mingo@elte.hu, Jarod Wilson , Mauro Carvalho Chehab , Namhyung Kim , Palash Bandyopadhyay , Joe Perches , Ruslan Pisarev , Ilia Mirkin , Hans Verkuil , Bob Beers , Ralph Loader , Tejun Heo , Greg Dietsche , Jiri Kosina , Vitaliy Ivanov , devel@driverdev.osuosl.org Subject: Re: [PATCH 25/62] staging: irq: Remove IRQF_DISABLED Message-ID: <20110908145210.GB5793@suse.de> References: <1315383059-3673-1-git-send-email-yong.zhang0@gmail.com> <1315383059-3673-26-git-send-email-yong.zhang0@gmail.com> <201109081240.51212.marvin24@gmx.de> <20110908135854.GA3069@zhy> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110908135854.GA3069@zhy> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 08, 2011 at 09:58:54PM +0800, Yong Zhang wrote: > On Thu, Sep 08, 2011 at 12:40:48PM +0200, Marc Dietich wrote: > > > This flag is a NOOP and can be removed now. > > > > > > Signed-off-by: Yong Zhang > > > --- > > > drivers/staging/cx25821/cx25821-alsa.c | 2 +- > > > drivers/staging/cx25821/cx25821-audio-upstream.c | 2 +- > > > drivers/staging/cx25821/cx25821-core.c | 2 +- > > > .../staging/cx25821/cx25821-video-upstream-ch2.c | 2 +- > > > drivers/staging/cx25821/cx25821-video-upstream.c | 2 +- > > > drivers/staging/cxt1e1/linux.c | 6 ------ > > > drivers/staging/lirc/lirc_serial.c | 2 +- > > > drivers/staging/lirc/lirc_sir.c | 2 +- > > > drivers/staging/nvec/nvec.c | 2 +- > > > 9 files changed, 8 insertions(+), 14 deletions(-) > > > > > > [...] > > > > > > diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c > > > index 72258e8..6210c95 100644 > > > --- a/drivers/staging/nvec/nvec.c > > > +++ b/drivers/staging/nvec/nvec.c > > > @@ -339,7 +339,7 @@ static int __devinit tegra_nvec_probe(struct > > > platform_device *pdev) > > > > > > tegra_init_i2c_slave(pdata, i2c_regs, i2c_clk); > > > > > > - err = request_irq(nvec->irq, i2c_interrupt, IRQF_DISABLED, "nvec", nvec); > > > + err = request_irq(nvec->irq, i2c_interrupt, 0, "nvec", nvec); > > > if(err) { > > > dev_err(nvec->dev, "couldn't request irq"); > > > goto failed; > > > > This is already fixed in > > http://driverdev.linuxdriverproject.org/pipermail/devel/2011-August/018960.html > > which went into the staging tree (which is currently not available). > > Thanks for pointing it out. > > IMHO, the conflict is easy to fix. And if necessary, I could send a new > version :) I'll try to work it out, and if I have problems, I'll ask for a new version once linux-next gets back up and running. greg k-h