diff options
| author | Mario Six <[email protected]> | 2018-01-15 11:06:52 +0100 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2018-01-21 10:01:02 -0700 |
| commit | e2db9e7a06ad4b9eb174859c2a27856fd2af97ad (patch) | |
| tree | 149f42fcd6a7dce8a99e9b65bac15caadde9fc5c /drivers | |
| parent | 268453be7c8f9fb93e1c40b9ce5f7382335ebeb4 (diff) | |
clk: clk_fixed_rate: Fix style violation
Fix a mis-indented function call in clk_fixed_rate.c
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Mario Six <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/clk/clk_fixed_rate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk_fixed_rate.c b/drivers/clk/clk_fixed_rate.c index 63565b6ed8d..9dd6bc5726d 100644 --- a/drivers/clk/clk_fixed_rate.c +++ b/drivers/clk/clk_fixed_rate.c @@ -31,8 +31,8 @@ const struct clk_ops clk_fixed_rate_ops = { static int clk_fixed_rate_ofdata_to_platdata(struct udevice *dev) { #if !CONFIG_IS_ENABLED(OF_PLATDATA) - to_clk_fixed_rate(dev)->fixed_rate = dev_read_u32_default(dev, - "clock-frequency", 0); + to_clk_fixed_rate(dev)->fixed_rate = + dev_read_u32_default(dev, "clock-frequency", 0); #endif return 0; |
