diff options
author | Lukasz Majewski <lukma@denx.de> | 2019-06-24 15:50:36 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-07-19 14:50:30 +0200 |
commit | a9092710c5821c4b0d95559c788f13d6804cbd63 (patch) | |
tree | 886838443a2718cfd9bb3e57576007df5f9d9d9e /include/clk.h | |
parent | 4ebdf654b2c3b4a32227a955fa97cb1701de705a (diff) | |
download | u-boot-a9092710c5821c4b0d95559c788f13d6804cbd63.tar.gz |
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>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'include/clk.h')
-rw-r--r-- | include/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clk.h b/include/clk.h index d24e99713a..a909b71f1a 100644 --- a/include/clk.h +++ b/include/clk.h @@ -20,7 +20,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. |