Re: [PATCH] clk: clk-gpio-gate: Fix active low

2015-04-10 Thread Michael Turquette
Quoting Jyri Sarha (2015-03-18 07:52:14) > On 03/18/15 15:53, Martin Fuzzey wrote: > > The active low flag in the DT cell is currently ignored. > > > > This occurs because of_get_named_gpio_flags() does not apply the flags > > to the underlying struct gpio_desc so the test in clk_register_gpio_gate

Re: [PATCH] clk: clk-gpio-gate: Fix active low

2015-03-18 Thread Jyri Sarha
On 03/18/15 15:53, Martin Fuzzey wrote: The active low flag in the DT cell is currently ignored. This occurs because of_get_named_gpio_flags() does not apply the flags to the underlying struct gpio_desc so the test in clk_register_gpio_gate() was bogus. Note that this patch changes the internal

[PATCH] clk: clk-gpio-gate: Fix active low

2015-03-18 Thread Martin Fuzzey
The active low flag in the DT cell is currently ignored. This occurs because of_get_named_gpio_flags() does not apply the flags to the underlying struct gpio_desc so the test in clk_register_gpio_gate() was bogus. Note that this patch changes the internal kernel API for clk_register_gpio_gate() b