2015-05-07 13:39:26

by Tomas Winkler

[permalink] [raw]
Subject: [char-misc-next] NFC: microread: drop unused variable

In microread_i2c_irq_thread_fn 'client' set but not used

Cc: Lauro Ramos Venancio <[email protected]>
Cc: Aloisio Almeida Jr <[email protected]>
Signed-off-by: Tomas Winkler <[email protected]>
---
drivers/nfc/microread/i2c.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/drivers/nfc/microread/i2c.c b/drivers/nfc/microread/i2c.c
index 661e2c8143c4..daf352597ef8 100644
--- a/drivers/nfc/microread/i2c.c
+++ b/drivers/nfc/microread/i2c.c
@@ -211,7 +211,6 @@ flush:
static irqreturn_t microread_i2c_irq_thread_fn(int irq, void *phy_id)
{
struct microread_i2c_phy *phy = phy_id;
- struct i2c_client *client;
struct sk_buff *skb = NULL;
int r;

@@ -220,8 +219,6 @@ static irqreturn_t microread_i2c_irq_thread_fn(int irq, void *phy_id)
return IRQ_NONE;
}

- client = phy->i2c_dev;
-
if (phy->hard_fault != 0)
return IRQ_HANDLED;

--
2.1.0


2015-06-08 21:33:32

by Samuel Ortiz

[permalink] [raw]
Subject: Re: [char-misc-next] NFC: microread: drop unused variable

Hi Tomas,

On Thu, May 07, 2015 at 04:38:30PM +0300, Tomas Winkler wrote:
> In microread_i2c_irq_thread_fn 'client' set but not used
>
> Cc: Lauro Ramos Venancio <[email protected]>
> Cc: Aloisio Almeida Jr <[email protected]>
> Signed-off-by: Tomas Winkler <[email protected]>
> ---
> drivers/nfc/microread/i2c.c | 3 ---
> 1 file changed, 3 deletions(-)
Applied to nfc-next, thanks.

Cheers,
Samuel.