diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-11-29 06:19:59 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:42:21 -0500 |
commit | 055cd55601f948675006ca90362fc2bfaae90a86 (patch) | |
tree | a878c55c30b0ae30334f3523d8dd67940d32a7f3 /drivers/media/video/cx23885 | |
parent | 0278155c84af42d78785731263b69fb49f945ea7 (diff) |
V4L/DVB (13537): ir: Prepare the code for dynamic keycode table allocation
Currently, the IR table is initialized by calling ir_input_init(). However,
this function doesn't return any error code, nor has a function to be called
when de-initializing the IR's.
Change the return argment to integer and make sure that each driver will
handle the error code. Also adds a function to free any resources that may
be allocating there: ir_input_free().
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-input.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/video/cx23885/cx23885-input.c b/drivers/media/video/cx23885/cx23885-input.c index fea882d1fbcb..469e083dd5f8 100644 --- a/drivers/media/video/cx23885/cx23885-input.c +++ b/drivers/media/video/cx23885/cx23885-input.c | |||
@@ -377,7 +377,10 @@ int cx23885_input_init(struct cx23885_dev *dev) | |||
377 | cx23885_boards[dev->board].name); | 377 | cx23885_boards[dev->board].name); |
378 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(dev->pci)); | 378 | snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(dev->pci)); |
379 | 379 | ||
380 | ir_input_init(input_dev, &ir->ir, ir_type, ir_codes); | 380 | ret = ir_input_init(input_dev, &ir->ir, ir_type, ir_codes); |
381 | if (ret < 0) | ||
382 | goto err_out_free; | ||
383 | |||
381 | input_dev->name = ir->name; | 384 | input_dev->name = ir->name; |
382 | input_dev->phys = ir->phys; | 385 | input_dev->phys = ir->phys; |
383 | input_dev->id.bustype = BUS_PCI; | 386 | input_dev->id.bustype = BUS_PCI; |
@@ -404,6 +407,7 @@ err_out_stop: | |||
404 | cx23885_input_ir_stop(dev); | 407 | cx23885_input_ir_stop(dev); |
405 | dev->ir_input = NULL; | 408 | dev->ir_input = NULL; |
406 | err_out_free: | 409 | err_out_free: |
410 | ir_input_free(input_dev); | ||
407 | input_free_device(input_dev); | 411 | input_free_device(input_dev); |
408 | kfree(ir); | 412 | kfree(ir); |
409 | return ret; | 413 | return ret; |
@@ -416,6 +420,7 @@ void cx23885_input_fini(struct cx23885_dev *dev) | |||
416 | 420 | ||
417 | if (dev->ir_input == NULL) | 421 | if (dev->ir_input == NULL) |
418 | return; | 422 | return; |
423 | ir_input_free(dev->ir_input->dev); | ||
419 | input_unregister_device(dev->ir_input->dev); | 424 | input_unregister_device(dev->ir_input->dev); |
420 | kfree(dev->ir_input); | 425 | kfree(dev->ir_input); |
421 | dev->ir_input = NULL; | 426 | dev->ir_input = NULL; |