diff options
author | Michal Simek <michal.simek@xilinx.com> | 2021-08-23 13:33:47 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-08-28 23:43:17 -0700 |
commit | 6e1cc688e4501c129ff4e0f001588e2859c5be33 (patch) | |
tree | e0d0b0c6f554f1336ad55a02f8c8e96c0529ca40 /drivers/clk | |
parent | a3ef91f501b0a4bcae8627342f7a23401963490d (diff) | |
download | linux-6e1cc688e4501c129ff4e0f001588e2859c5be33.tar.gz linux-6e1cc688e4501c129ff4e0f001588e2859c5be33.tar.bz2 linux-6e1cc688e4501c129ff4e0f001588e2859c5be33.zip |
clk: zynqmp: Fix kernel-doc format
Align structure and function names with definitions.
Issues are reported by kernel-doc script as:
drivers/clk/zynqmp/clk-gate-zynqmp.c:24: warning: expecting prototype for
struct clk_gate. Prototype was for struct zynqmp_clk_gate instead
drivers/clk/zynqmp/clk-gate-zynqmp.c:75: warning: expecting prototype for
zynqmp_clk_gate_is_enable(). Prototype was for zynqmp_clk_gate_is_enabled()
instead
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/26526e144296373b2c75e75865dd023158f9bfc7.1629718424.git.michal.simek@xilinx.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/zynqmp/clk-gate-zynqmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/zynqmp/clk-gate-zynqmp.c b/drivers/clk/zynqmp/clk-gate-zynqmp.c index 695feaa82da5..565ed67a0430 100644 --- a/drivers/clk/zynqmp/clk-gate-zynqmp.c +++ b/drivers/clk/zynqmp/clk-gate-zynqmp.c @@ -12,7 +12,7 @@ #include "clk-zynqmp.h" /** - * struct clk_gate - gating clock + * struct zynqmp_clk_gate - gating clock * @hw: handle between common and hardware-specific interfaces * @flags: hardware-specific flags * @clk_id: Id of clock @@ -66,7 +66,7 @@ static void zynqmp_clk_gate_disable(struct clk_hw *hw) } /** - * zynqmp_clk_gate_is_enable() - Check clock state + * zynqmp_clk_gate_is_enabled() - Check clock state * @hw: handle between common and hardware-specific interfaces * * Return: 1 if enabled, 0 if disabled else error code |