diff mbox series

[U-Boot,v3,01/11] dm: Fix documentation entry as there is no UCLASS_CLOCK uclass

Message ID 20190425102953.5348-2-lukma@denx.de
State Changes Requested
Delegated to: Tom Rini
Headers show
Series clk: Port Linux common clock framework [CCF] to U-boot (tag: 5.0-rc3) | expand

Commit Message

Lukasz Majewski April 25, 2019, 10:29 a.m. UTC
There is no UCLASS_CLOCK uclass defined. Instead we do use the UCLASS_CLK.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

Changes in v3: None

 include/clk.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peng Fan April 26, 2019, 2:16 a.m. UTC | #1
> Subject: [PATCH v3 01/11] dm: Fix documentation entry as there is no
> UCLASS_CLOCK uclass
> 
> There is no UCLASS_CLOCK uclass defined. Instead we do use the
> UCLASS_CLK.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> Reviewed-by: Simon Glass <sjg@chromium.org>
> ---
> 
> Changes in v3: None
> 
>  include/clk.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/clk.h b/include/clk.h index 8e366163f9..f6fbcc6634
> 100644
> --- a/include/clk.h
> +++ b/include/clk.h
> @@ -19,7 +19,7 @@
>   * clock provider. This API provides a standard means for drivers to enable
> and
>   * disable clocks, and to set the rate at which they oscillate.
>   *
> - * A driver that implements UCLASS_CLOCK is a clock provider. A provider will
> + * A driver that implements UCLASS_CLK is a clock provider. A provider
> + will
>   * often implement multiple separate clocks, since the hardware it manages
>   * often has this capability. clk-uclass.h describes the interface which
>   * clock providers must implement.

Reviewed-by: Peng Fan <peng.fan@nxp.com>

> --
> 2.11.0
diff mbox series

Patch

diff --git a/include/clk.h b/include/clk.h
index 8e366163f9..f6fbcc6634 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -19,7 +19,7 @@ 
  * clock provider. This API provides a standard means for drivers to enable and
  * disable clocks, and to set the rate at which they oscillate.
  *
- * A driver that implements UCLASS_CLOCK is a clock provider. A provider will
+ * A driver that implements UCLASS_CLK is a clock provider. A provider will
  * often implement multiple separate clocks, since the hardware it manages
  * often has this capability. clk-uclass.h describes the interface which
  * clock providers must implement.