Message ID | 1450778017-12124-2-git-send-email-shikha.singh@st.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Kalle Valo |
Headers | show |
Hi Shikha, On Tue, Dec 22, 2015 at 04:53:37AM -0500, Shikha Singh wrote: > Modification in core.c to rename function "irq_handler" > and "irq_thread_handler" to "st95hf_irq_handler" and > "st95hf_irq_thread_handler" respectively. This modification > was done to remove build error. > > Signed-off-by: Shikha Singh <shikha.singh@st.com> > --- > drivers/nfc/st95hf/core.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Applied to nfc-next, thanks. Cheers, Samuel. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c index 526e342..9524b12 100644 --- a/drivers/nfc/st95hf/core.c +++ b/drivers/nfc/st95hf/core.c @@ -762,7 +762,7 @@ static int st95hf_response_handler(struct st95hf_context *stcontext, return result; } -static irqreturn_t irq_handler(int irq, void *st95hfcontext) +static irqreturn_t st95hf_irq_handler(int irq, void *st95hfcontext) { struct st95hf_context *stcontext = (struct st95hf_context *)st95hfcontext; @@ -776,7 +776,7 @@ static irqreturn_t irq_handler(int irq, void *st95hfcontext) return IRQ_WAKE_THREAD; } -static irqreturn_t irq_thread_handler(int irq, void *st95hfcontext) +static irqreturn_t st95hf_irq_thread_handler(int irq, void *st95hfcontext) { int result = 0; int res_len; @@ -1140,8 +1140,8 @@ static int st95hf_probe(struct spi_device *nfc_spi_dev) if (nfc_spi_dev->irq > 0) { if (devm_request_threaded_irq(&nfc_spi_dev->dev, nfc_spi_dev->irq, - irq_handler, - irq_thread_handler, + st95hf_irq_handler, + st95hf_irq_thread_handler, IRQF_TRIGGER_FALLING, "st95hf", (void *)st95context) < 0) {
Modification in core.c to rename function "irq_handler" and "irq_thread_handler" to "st95hf_irq_handler" and "st95hf_irq_thread_handler" respectively. This modification was done to remove build error. Signed-off-by: Shikha Singh <shikha.singh@st.com> --- drivers/nfc/st95hf/core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)