aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/gpio-ir-recv.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/rc/gpio-ir-recv.c')
-rw-r--r--drivers/media/rc/gpio-ir-recv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/rc/gpio-ir-recv.c b/drivers/media/rc/gpio-ir-recv.c
index 229853d68451..7dbc9ca6d885 100644
--- a/drivers/media/rc/gpio-ir-recv.c
+++ b/drivers/media/rc/gpio-ir-recv.c
@@ -59,7 +59,7 @@ static int gpio_ir_recv_get_devtree_pdata(struct device *dev,
59 return 0; 59 return 0;
60} 60}
61 61
62static struct of_device_id gpio_ir_recv_of_match[] = { 62static const struct of_device_id gpio_ir_recv_of_match[] = {
63 { .compatible = "gpio-ir-receiver", }, 63 { .compatible = "gpio-ir-receiver", },
64 { }, 64 { },
65}; 65};
@@ -78,7 +78,7 @@ static irqreturn_t gpio_ir_recv_irq(int irq, void *dev_id)
78 int rc = 0; 78 int rc = 0;
79 enum raw_event_type type = IR_SPACE; 79 enum raw_event_type type = IR_SPACE;
80 80
81 gval = gpio_get_value_cansleep(gpio_dev->gpio_nr); 81 gval = gpio_get_value(gpio_dev->gpio_nr);
82 82
83 if (gval < 0) 83 if (gval < 0)
84 goto err_get_value; 84 goto err_get_value;