clk: clk-xgene: Add description for 'mask' and fix formatting for 'flags'
authorLee Jones <lee.jones@linaro.org>
Tue, 26 Jan 2021 12:45:36 +0000 (12:45 +0000)
committerStephen Boyd <sboyd@kernel.org>
Thu, 11 Feb 2021 19:56:06 +0000 (11:56 -0800)
Fixes the following W=1 kernel build warning(s):

 drivers/clk/clk-xgene.c:229: warning: Function parameter or member 'mask' not described in 'xgene_clk_pmd'
 drivers/clk/clk-xgene.c:229: warning: Function parameter or member 'flags' not described in 'xgene_clk_pmd'

Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: Loc Ho <lho@apm.com>
Cc: linux-clk@vger.kernel.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20210126124540.3320214-18-lee.jones@linaro.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-xgene.c

index 3fd5305..857217c 100644 (file)
@@ -206,17 +206,16 @@ static void xgene_pcppllclk_init(struct device_node *np)
  * @hw:                handle between common and hardware-specific interfaces
  * @reg:       register containing the fractional scale multiplier (scaler)
  * @shift:     shift to the unit bit field
+ * @mask:      mask to the unit bit field
  * @denom:     1/denominator unit
  * @lock:      register lock
- * Flags:
- * XGENE_CLK_PMD_SCALE_INVERTED - By default the scaler is the value read
+ * @flags: XGENE_CLK_PMD_SCALE_INVERTED - By default the scaler is the value read
  *     from the register plus one. For example,
  *             0 for (0 + 1) / denom,
  *             1 for (1 + 1) / denom and etc.
  *     If this flag is set, it is
  *             0 for (denom - 0) / denom,
  *             1 for (denom - 1) / denom and etc.
- *
  */
 struct xgene_clk_pmd {
        struct clk_hw   hw;