linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Song Bao Hua (Barry Song)" <song.bao.hua@hisilicon.com>
To: "dmitry.torokhov@gmail.com" <dmitry.torokhov@gmail.com>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"maz@kernel.org" <maz@kernel.org>,
	"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>
Cc: "linuxarm@openeuler.org" <linuxarm@openeuler.org>,
	"linux-input@vger.kernel.org" <linux-input@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: RE: [PATCH v3 00/12] add IRQF_NO_AUTOEN for request_irq
Date: Thu, 21 Jan 2021 21:38:28 +0000	[thread overview]
Message-ID: <848fb07c3073401bbbe15db71f5922c9@hisilicon.com> (raw)
In-Reply-To: <20210107223926.35284-1-song.bao.hua@hisilicon.com>

Hi Thomas, Greg, Dmitry, Marc,
Any further comment on this new API? 

Thanks
Barry

> -----Original Message-----
> From: Song Bao Hua (Barry Song)
> Sent: Friday, January 8, 2021 11:39 AM
> To: dmitry.torokhov@gmail.com; tglx@linutronix.de; maz@kernel.org;
> gregkh@linuxfoundation.org; linux-input@vger.kernel.org;
> linux-kernel@vger.kernel.org
> Cc: linuxarm@openeuler.org; Song Bao Hua (Barry Song)
> <song.bao.hua@hisilicon.com>
> Subject: [PATCH v3 00/12] add IRQF_NO_AUTOEN for request_irq
> 
> This patchset added IRQF_NO_AUTOEN for request_irq() and converted
> drivers/input to this new API.
> Other drivers will be handled afterwards.
> 
> -v3:
>   added examples with respect to Greg's comment
> 
> Barry Song (12):
>   genirq: add IRQF_NO_AUTOEN for request_irq
>   Input: ar1021 - request_irq by IRQF_NO_AUTOEN and remove disable_irq
>   Input: atmel_mxt_ts - request_irq by IRQF_NO_AUTOEN and remove
>     disable_irq
>   Input: melfas_mip4 - request_irq by IRQF_NO_AUTOEN and remove
>     disable_irq
>   Input: bu21029_ts - request_irq by IRQF_NO_AUTOEN and remove
>     irq_set_status_flags
>   Input: stmfts - request_irq by IRQF_NO_AUTOEN and remove
>     irq_set_status_flags
>   Input: zinitix - request_irq by IRQF_NO_AUTOEN and remove
>     irq_set_status_flags
>   Input: mms114 - request_irq by IRQF_NO_AUTOEN and remove disable_irq
>   Input: wm831x-ts - request_irq by IRQF_NO_AUTOEN and remove
>     disable_irq
>   Input: cyttsp - request_irq by IRQF_NO_AUTOEN and remove disable_irq
>   Input: tegra-kbc - request_irq by IRQF_NO_AUTOEN and remove
>     disable_irq
>   Input: tca6416-keypad - request_irq by IRQF_NO_AUTOEN and remove
>     disable_irq
> 
>  drivers/input/keyboard/tca6416-keypad.c  |  3 +--
>  drivers/input/keyboard/tegra-kbc.c       |  5 ++---
>  drivers/input/touchscreen/ar1021_i2c.c   |  5 +----
>  drivers/input/touchscreen/atmel_mxt_ts.c |  5 ++---
>  drivers/input/touchscreen/bu21029_ts.c   |  4 ++--
>  drivers/input/touchscreen/cyttsp_core.c  |  5 ++---
>  drivers/input/touchscreen/melfas_mip4.c  |  5 ++---
>  drivers/input/touchscreen/mms114.c       |  4 ++--
>  drivers/input/touchscreen/stmfts.c       |  3 +--
>  drivers/input/touchscreen/wm831x-ts.c    |  3 +--
>  drivers/input/touchscreen/zinitix.c      |  4 ++--
>  include/linux/interrupt.h                |  3 +++
>  kernel/irq/manage.c                      |  8 ++++++++
>  kernel/irq/settings.h                    | 10 ++++++++++
>  14 files changed, 39 insertions(+), 28 deletions(-)
> 
> --
> 2.25.1


  parent reply	other threads:[~2021-01-21 21:43 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-07 22:39 [PATCH v3 00/12] add IRQF_NO_AUTOEN for request_irq Barry Song
2021-01-07 22:39 ` [PATCH v3 01/12] genirq: " Barry Song
2021-01-28 19:54   ` Thomas Gleixner
2021-02-01  4:08     ` Song Bao Hua (Barry Song)
2021-01-07 22:39 ` [PATCH v3 02/12] Input: ar1021 - request_irq by IRQF_NO_AUTOEN and remove disable_irq Barry Song
2021-01-07 22:39 ` [PATCH v3 03/12] Input: atmel_mxt_ts " Barry Song
2021-01-07 22:39 ` [PATCH v3 04/12] Input: melfas_mip4 " Barry Song
2021-01-07 22:39 ` [PATCH v3 05/12] Input: bu21029_ts - request_irq by IRQF_NO_AUTOEN and remove irq_set_status_flags Barry Song
2021-01-07 22:39 ` [PATCH v3 06/12] Input: stmfts " Barry Song
2021-01-07 22:39 ` [PATCH v3 07/12] Input: zinitix " Barry Song
2021-01-07 22:39 ` [PATCH v3 08/12] Input: mms114 - request_irq by IRQF_NO_AUTOEN and remove disable_irq Barry Song
2021-01-07 22:39 ` [PATCH v3 09/12] Input: wm831x-ts " Barry Song
2021-01-07 22:39 ` [PATCH v3 10/12] Input: cyttsp " Barry Song
2021-01-07 22:39 ` [PATCH v3 11/12] Input: tegra-kbc " Barry Song
2021-01-07 22:39 ` [PATCH v3 12/12] Input: tca6416-keypad " Barry Song
2021-01-21 21:38 ` Song Bao Hua (Barry Song) [this message]
2021-01-27 13:49   ` [PATCH v3 00/12] add IRQF_NO_AUTOEN for request_irq gregkh
2021-01-27 19:45     ` dmitry.torokhov
2021-01-28 11:08       ` [Linuxarm] " Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=848fb07c3073401bbbe15db71f5922c9@hisilicon.com \
    --to=song.bao.hua@hisilicon.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxarm@openeuler.org \
    --cc=maz@kernel.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).