diff options
author | Stephen Boyd <sboyd@kernel.org> | 2018-12-11 19:58:54 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-01-24 23:21:29 +0100 |
commit | 7374faa92edce7af6d69d0a2968198e9b919a281 (patch) | |
tree | 33498896342c897d9eec7c3b1d1eabd9de32b66b /include | |
parent | clk: nxp: Drop 'flags' on fixed_rate clk macro (diff) | |
download | linux-7374faa92edce7af6d69d0a2968198e9b919a281.tar.xz linux-7374faa92edce7af6d69d0a2968198e9b919a281.zip |
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')
-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) |