|
@@ -30,7 +30,6 @@ struct gpio_rc_dev {
|
|
|
struct rc_dev *rcdev;
|
|
|
int gpio_nr;
|
|
|
bool active_low;
|
|
|
- struct timer_list flush_timer;
|
|
|
};
|
|
|
|
|
|
#ifdef CONFIG_OF
|
|
@@ -94,26 +93,10 @@ static irqreturn_t gpio_ir_recv_irq(int irq, void *dev_id)
|
|
|
if (rc < 0)
|
|
|
goto err_get_value;
|
|
|
|
|
|
- mod_timer(&gpio_dev->flush_timer,
|
|
|
- jiffies + nsecs_to_jiffies(gpio_dev->rcdev->timeout));
|
|
|
-
|
|
|
- ir_raw_event_handle(gpio_dev->rcdev);
|
|
|
-
|
|
|
err_get_value:
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
|
|
|
|
-static void flush_timer(unsigned long arg)
|
|
|
-{
|
|
|
- struct gpio_rc_dev *gpio_dev = (struct gpio_rc_dev *)arg;
|
|
|
- DEFINE_IR_RAW_EVENT(ev);
|
|
|
-
|
|
|
- ev.timeout = true;
|
|
|
- ev.duration = gpio_dev->rcdev->timeout;
|
|
|
- ir_raw_event_store(gpio_dev->rcdev, &ev);
|
|
|
- ir_raw_event_handle(gpio_dev->rcdev);
|
|
|
-}
|
|
|
-
|
|
|
static int gpio_ir_recv_probe(struct platform_device *pdev)
|
|
|
{
|
|
|
struct gpio_rc_dev *gpio_dev;
|
|
@@ -171,9 +154,6 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
|
|
|
gpio_dev->gpio_nr = pdata->gpio_nr;
|
|
|
gpio_dev->active_low = pdata->active_low;
|
|
|
|
|
|
- setup_timer(&gpio_dev->flush_timer, flush_timer,
|
|
|
- (unsigned long)gpio_dev);
|
|
|
-
|
|
|
rc = gpio_request(pdata->gpio_nr, "gpio-ir-recv");
|
|
|
if (rc < 0)
|
|
|
goto err_gpio_request;
|
|
@@ -216,7 +196,6 @@ static int gpio_ir_recv_remove(struct platform_device *pdev)
|
|
|
struct gpio_rc_dev *gpio_dev = platform_get_drvdata(pdev);
|
|
|
|
|
|
free_irq(gpio_to_irq(gpio_dev->gpio_nr), gpio_dev);
|
|
|
- del_timer_sync(&gpio_dev->flush_timer);
|
|
|
rc_unregister_device(gpio_dev->rcdev);
|
|
|
gpio_free(gpio_dev->gpio_nr);
|
|
|
kfree(gpio_dev);
|