Skip to content

Commit

Permalink
V4L/DVB(13808a): mantis: convert it to the new ir-core register/unreg…
Browse files Browse the repository at this point in the history
…ister functions

Fix a merge conflict between mantis and IR cleanups

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Jan 17, 2010
1 parent 8825a09 commit 9c0832e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/media/dvb/mantis/mantis_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ int mantis_input_init(struct mantis_pci *mantis)
rc->name = name;
rc->phys = dev;

ir_input_init(rc, &rc_state, IR_TYPE_OTHER, &ir_mantis);
ir_input_init(rc, &rc_state, IR_TYPE_OTHER);

rc->id.bustype = BUS_PCI;
rc->id.vendor = mantis->vendor_id;
rc->id.product = mantis->device_id;
rc->id.version = 1;
rc->dev = mantis->pdev->dev;

err = input_register_device(rc);
err = ir_input_register(rc, &ir_mantis);
if (err) {
dprintk(MANTIS_ERROR, 1, "IR device registration failed, ret = %d", err);
input_free_device(rc);
Expand All @@ -142,7 +142,7 @@ int mantis_exit(struct mantis_pci *mantis)
{
struct input_dev *rc = mantis->rc;

input_unregister_device(rc);
ir_input_unregister(rc);

return 0;
}

0 comments on commit 9c0832e

Please sign in to comment.