diff options
| author | Tom Rini <[email protected]> | 2023-09-09 09:33:02 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-09-09 09:33:02 -0400 |
| commit | 252592214f79d8206c3cf0056a8827a0010214e0 (patch) | |
| tree | ae31c280504225e27c57fa0fae8e77d011613ea5 /include | |
| parent | c0c08be5468cb26db597932bc69c4eda1129841d (diff) | |
| parent | 7314ba2bf8452df68d07f251aa59440de58067b0 (diff) | |
Merge tag 'doc-2023-10-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request doc-2023-10-rc5
Documentation:
* move more TI board documentation to HTML
* update TPM usage instructions for qemu-arm
* update the EFI app documentation
Other:
* tpm: Fix autostart for TPM1.2 devices
* spl: fix undefined return value in spl_blk_load_image
Diffstat (limited to 'include')
| -rw-r--r-- | include/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/timer.h b/include/timer.h index 311ce6b2c3a..091d8dfa228 100644 --- a/include/timer.h +++ b/include/timer.h @@ -55,10 +55,10 @@ u64 timer_conv_64(u32 count); int timer_get_count(struct udevice *dev, u64 *count); /** - * timer_get_rate() - Get the timer input clock frequency + * timer_get_rate() - Get the timer input clock frequency in Hz * @dev: The timer device * - * Return: the timer input clock frequency + * Return: the timer input clock frequency in Hz */ unsigned long timer_get_rate(struct udevice *dev); @@ -87,7 +87,7 @@ struct timer_ops { /** * struct timer_dev_priv - information about a device used by the uclass * - * @clock_rate: the timer input clock frequency + * @clock_rate: the timer input clock frequency in Hz */ struct timer_dev_priv { unsigned long clock_rate; |
