Commit 0dc50942 authored by David Härdeman's avatar David Härdeman Committed by Mauro Carvalho Chehab

V4L/DVB: ir-core: partially convert ir-kbd-i2c.c to not use ir-functions.c

Partially convert drivers/media/video/ir-kbd-i2c.c to
not use ir-functions.c
Signed-off-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 3bbd3f2d
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include <linux/i2c-id.h> #include <linux/i2c-id.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <media/ir-common.h> #include <media/ir-core.h>
#include <media/ir-kbd-i2c.h> #include <media/ir-kbd-i2c.h>
/* ----------------------------------------------------------------------- */ /* ----------------------------------------------------------------------- */
...@@ -272,11 +272,8 @@ static void ir_key_poll(struct IR_i2c *ir) ...@@ -272,11 +272,8 @@ static void ir_key_poll(struct IR_i2c *ir)
return; return;
} }
if (0 == rc) { if (rc)
ir_input_nokey(ir->input, &ir->ir); ir_keydown(ir->input, ir_key, 0);
} else {
ir_input_keydown(ir->input, &ir->ir, ir_key);
}
} }
static void ir_work(struct work_struct *work) static void ir_work(struct work_struct *work)
...@@ -439,10 +436,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id) ...@@ -439,10 +436,7 @@ static int ir_probe(struct i2c_client *client, const struct i2c_device_id *id)
dev_name(&client->dev)); dev_name(&client->dev));
/* init + register input device */ /* init + register input device */
err = ir_input_init(input_dev, &ir->ir, ir_type); ir->ir_type = ir_type;
if (err < 0)
goto err_out_free;
input_dev->id.bustype = BUS_I2C; input_dev->id.bustype = BUS_I2C;
input_dev->name = ir->name; input_dev->name = ir->name;
input_dev->phys = ir->phys; input_dev->phys = ir->phys;
......
...@@ -11,7 +11,7 @@ struct IR_i2c { ...@@ -11,7 +11,7 @@ struct IR_i2c {
struct i2c_client *c; struct i2c_client *c;
struct input_dev *input; struct input_dev *input;
struct ir_input_state ir; struct ir_input_state ir;
u64 ir_type;
/* Used to avoid fast repeating */ /* Used to avoid fast repeating */
unsigned char old; unsigned char old;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment