diff options
author | Stephen Boyd <sboyd@kernel.org> | 2018-12-11 10:58:54 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-01-24 14:21:29 -0800 |
commit | 7374faa92edce7af6d69d0a2968198e9b919a281 (patch) | |
tree | 33498896342c897d9eec7c3b1d1eabd9de32b66b /include/linux/clk-provider.h | |
parent | 7150e182c80ab289b8ce0eeaae62098bf3921124 (diff) |
clk: Remove 'flags' member of struct clk_fixed_rate
This member is never used nor documented in the kerneldoc. Remove it.
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'include/linux/clk-provider.h')
-rw-r--r-- | include/linux/clk-provider.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index edff3c5883bc..a1705a0f08c7 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -307,7 +307,6 @@ struct clk_fixed_rate { struct clk_hw hw; unsigned long fixed_rate; unsigned long fixed_accuracy; - u8 flags; }; #define to_clk_fixed_rate(_hw) container_of(_hw, struct clk_fixed_rate, hw) |