aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/clk-provider.h
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@kernel.org>2018-12-11 10:58:54 -0800
committerStephen Boyd <sboyd@kernel.org>2019-01-24 14:21:29 -0800
commit7374faa92edce7af6d69d0a2968198e9b919a281 (patch)
tree33498896342c897d9eec7c3b1d1eabd9de32b66b /include/linux/clk-provider.h
parentclk: nxp: Drop 'flags' on fixed_rate clk macro (diff)
downloadlinux-dev-7374faa92edce7af6d69d0a2968198e9b919a281.tar.xz
linux-dev-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/linux/clk-provider.h')
-rw-r--r--include/linux/clk-provider.h1
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)