aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r--drivers/clk/clk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index a24a6afb50b6..9760b526ca31 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -6,7 +6,7 @@
6 * it under the terms of the GNU General Public License version 2 as 6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Standard functionality for the common clock API. See Documentation/clk.txt 9 * Standard functionality for the common clock API. See Documentation/driver-api/clk.rst
10 */ 10 */
11 11
12#include <linux/clk.h> 12#include <linux/clk.h>
@@ -2747,7 +2747,7 @@ static int __clk_core_init(struct clk_core *core)
2747 goto out; 2747 goto out;
2748 } 2748 }
2749 2749
2750 /* check that clk_ops are sane. See Documentation/clk.txt */ 2750 /* check that clk_ops are sane. See Documentation/driver-api/clk.rst */
2751 if (core->ops->set_rate && 2751 if (core->ops->set_rate &&
2752 !((core->ops->round_rate || core->ops->determine_rate) && 2752 !((core->ops->round_rate || core->ops->determine_rate) &&
2753 core->ops->recalc_rate)) { 2753 core->ops->recalc_rate)) {