4d0e10b4b41fd94875f284c2d41d4ccec8b7e5c2
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.4 / 950-0110-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch
1 From c720f232587df1aa1dae31defbbb53fee69fe14b Mon Sep 17 00:00:00 2001
2 From: hdoverobinson <hdoverobinson@gmail.com>
3 Date: Tue, 13 Mar 2018 06:58:39 -0400
4 Subject: [PATCH] added capture_clear option to pps-gpio via dtoverlay
5 (#2433)
6
7 ---
8 drivers/pps/clients/pps-gpio.c | 2 ++
9 1 file changed, 2 insertions(+)
10
11 --- a/drivers/pps/clients/pps-gpio.c
12 +++ b/drivers/pps/clients/pps-gpio.c
13 @@ -145,6 +145,8 @@ static int pps_gpio_setup(struct platfor
14
15 if (of_property_read_bool(np, "assert-falling-edge"))
16 data->assert_falling_edge = true;
17 + if (of_property_read_bool(np, "capture-clear"))
18 + data->capture_clear = true;
19 return 0;
20 }
21