Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 343070
b: refs/heads/master
c: 8a1bbb5
h: refs/heads/master
v: v3
  • Loading branch information
Benjamin Tissoires authored and Jiri Kosina committed Dec 6, 2012
1 parent e39e5fb commit a4770c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 29b45787d1f57f82a1c37ff5a47786c6a9dbedd8
refs/heads/master: 8a1bbb5319384dab6568ac2ce30d19b922413bec
15 changes: 5 additions & 10 deletions trunk/drivers/hid/i2c-hid/i2c-hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,6 @@ struct i2c_hid {

unsigned long flags; /* device flags */

int irq; /* the interrupt line irq */

wait_queue_head_t wait; /* For waiting the interrupt */
};

Expand Down Expand Up @@ -736,8 +734,6 @@ static int __devinit i2c_hid_init_irq(struct i2c_client *client)
return ret;
}

ihid->irq = client->irq;

return 0;
}

Expand Down Expand Up @@ -851,7 +847,7 @@ static int __devinit i2c_hid_probe(struct i2c_client *client,
hid = hid_allocate_device();
if (IS_ERR(hid)) {
ret = PTR_ERR(hid);
goto err;
goto err_irq;
}

ihid->hid = hid;
Expand Down Expand Up @@ -881,10 +877,10 @@ static int __devinit i2c_hid_probe(struct i2c_client *client,
err_mem_free:
hid_destroy_device(hid);

err:
if (ihid->irq)
free_irq(ihid->irq, ihid);
err_irq:
free_irq(client->irq, ihid);

err:
i2c_hid_free_buffers(ihid);
kfree(ihid);
return ret;
Expand Down Expand Up @@ -912,10 +908,9 @@ static int __devexit i2c_hid_remove(struct i2c_client *client)
static int i2c_hid_suspend(struct device *dev)
{
struct i2c_client *client = to_i2c_client(dev);
struct i2c_hid *ihid = i2c_get_clientdata(client);

if (device_may_wakeup(&client->dev))
enable_irq_wake(ihid->irq);
enable_irq_wake(client->irq);

/* Save some power */
i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
Expand Down

0 comments on commit a4770c0

Please sign in to comment.