aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r--include/linux/platform_data/si5351.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/platform_data/si5351.h b/include/linux/platform_data/si5351.h
index 818c5c6e203f..c71a2dd66143 100644
--- a/include/linux/platform_data/si5351.h
+++ b/include/linux/platform_data/si5351.h
@@ -86,6 +86,7 @@ enum si5351_disable_state {
86 * @multisynth_src: multisynth source clock 86 * @multisynth_src: multisynth source clock
87 * @clkout_src: clkout source clock 87 * @clkout_src: clkout source clock
88 * @pll_master: if true, clkout can also change pll rate 88 * @pll_master: if true, clkout can also change pll rate
89 * @pll_reset: if true, clkout can reset its pll
89 * @drive: output drive strength 90 * @drive: output drive strength
90 * @rate: initial clkout rate, or default if 0 91 * @rate: initial clkout rate, or default if 0
91 */ 92 */
@@ -95,6 +96,7 @@ struct si5351_clkout_config {
95 enum si5351_drive_strength drive; 96 enum si5351_drive_strength drive;
96 enum si5351_disable_state disable_state; 97 enum si5351_disable_state disable_state;
97 bool pll_master; 98 bool pll_master;
99 bool pll_reset;
98 unsigned long rate; 100 unsigned long rate;
99}; 101};
100 102