summaryrefslogtreecommitdiff
path: root/include/rand.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-06-15 16:44:58 -0400
committerTom Rini <trini@konsulko.com>2020-06-15 16:44:58 -0400
commitc622afb0874e57cd7e9df51855e35286fa46aab7 (patch)
tree0e93777492b0dc0b2263c0cd2704e8fed1a39819 /include/rand.h
parente88d6979d1fa0a11468204fa729229afc49d5bde (diff)
parent4bb4249b39ce7284408c4d604a656be941427e63 (diff)
Merge tag 'efi-2020-07-rc5' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc5 Use correct printf code in efi_image_parse(). Add random number generation to HTML documentation.
Diffstat (limited to 'include/rand.h')
-rw-r--r--include/rand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rand.h b/include/rand.h
index c9d15f50a1..4c54fbbd10 100644
--- a/include/rand.h
+++ b/include/rand.h
@@ -22,7 +22,7 @@ void srand(unsigned int seed);
/**
* rand() - Get a 32-bit pseudo-random number
*
- * @returns next random number in the sequence
+ * Return: next random number in the sequence
*/
unsigned int rand(void);
@@ -32,8 +32,8 @@ unsigned int rand(void);
* This version of the function allows multiple sequences to be used at the
* same time, since it requires the caller to store the seed value.
*
- * @seed value to use, updated on exit
- * @returns next random number in the sequence
+ * @seedp: seed value to use, updated on exit
+ * Return: next random number in the sequence
*/
unsigned int rand_r(unsigned int *seedp);