diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-04-02 20:18:42 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 19:56:50 +0400 |
commit | b2245ba1644eb1eba400fd04c6e7bb3ab2d4a8fa (patch) | |
tree | 0b0213d19f51cd6cda191a91b970fa1fcc1d49b9 /drivers/media/video/cx88 | |
parent | 6686fa6917caaaaf3d595df6accedb87607517c9 (diff) | |
download | linux-b2245ba1644eb1eba400fd04c6e7bb3ab2d4a8fa.tar.xz |
V4L/DVB: ir: prepare IR code for a parameter change at register function
A latter patch will reuse the ir_input_register with a different meaning.
Before it, change all occurrences to a temporary name.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-input.c b/drivers/media/video/cx88/cx88-input.c index 48ca9805bb90..30af956a9eaa 100644 --- a/drivers/media/video/cx88/cx88-input.c +++ b/drivers/media/video/cx88/cx88-input.c @@ -439,7 +439,7 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci) ir->props.close = cx88_ir_close; /* all done */ - err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME); + err = __ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME); if (err) goto err_out_free; |