diff options
Diffstat (limited to 'drivers/media/IR/ir-sony-decoder.c')
-rw-r--r-- | drivers/media/IR/ir-sony-decoder.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/IR/ir-sony-decoder.c b/drivers/media/IR/ir-sony-decoder.c index b9074f07c7a0..2d15730822bc 100644 --- a/drivers/media/IR/ir-sony-decoder.c +++ b/drivers/media/IR/ir-sony-decoder.c | |||
@@ -48,8 +48,9 @@ static int ir_sony_decode(struct input_dev *input_dev, struct ir_raw_event ev) | |||
48 | if (!(ir_dev->raw->enabled_protocols & IR_TYPE_SONY)) | 48 | if (!(ir_dev->raw->enabled_protocols & IR_TYPE_SONY)) |
49 | return 0; | 49 | return 0; |
50 | 50 | ||
51 | if (IS_RESET(ev)) { | 51 | if (!is_timing_event(ev)) { |
52 | data->state = STATE_INACTIVE; | 52 | if (ev.reset) |
53 | data->state = STATE_INACTIVE; | ||
53 | return 0; | 54 | return 0; |
54 | } | 55 | } |
55 | 56 | ||