[U-Boot] [PATCH v2 05/41] common: Move random-number functions into their own header
Tom Rini
trini at konsulko.com
Mon Nov 11 14:18:03 UTC 2019
On Fri, Nov 08, 2019 at 12:53:12PM -0700, Simon Glass wrote:
> Create a new rand.h header file and move functions into it, to reduce
> the size of common.h
>
> Signed-off-by: Simon Glass <sjg at chromium.org>
> ---
>
> Changes in v2: None
>
> include/common.h | 6 ------
> include/net.h | 1 +
> include/rand.h | 40 ++++++++++++++++++++++++++++++++++++++++
> lib/rand.c | 1 +
> net/link_local.c | 1 +
> 5 files changed, 43 insertions(+), 6 deletions(-)
> create mode 100644 include/rand.h
>
> diff --git a/include/common.h b/include/common.h
> index 52bcc2e591..b09c7aeddd 100644
> --- a/include/common.h
> +++ b/include/common.h
> @@ -325,12 +325,6 @@ char * strmhz(char *buf, unsigned long hz);
> /* lib/crc32.c */
> #include <u-boot/crc.h>
>
> -/* lib/rand.c */
> -#define RAND_MAX -1U
> -void srand(unsigned int seed);
> -unsigned int rand(void);
> -unsigned int rand_r(unsigned int *seedp);
> -
> /*
> * STDIO based functions (can always be used)
> */
> diff --git a/include/net.h b/include/net.h
> index 75a16e4c8f..d8d187d8af 100644
> --- a/include/net.h
> +++ b/include/net.h
> @@ -16,6 +16,7 @@
> #include <asm/byteorder.h> /* for nton* / ntoh* stuff */
> #include <env.h>
> #include <linux/if_ether.h>
> +#include <rand.h>
>
> #define DEBUG_LL_STATE 0 /* Link local state machine changes */
> #define DEBUG_DEV_PKT 0 /* Packets or info directed to the device */
OK, but common.h includes net.h, and I don't see this addressed further
in the series. So this is a step in the right direction, but does it
get messy to not include it?
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20191111/5bbfb20e/attachment.sig>
More information about the U-Boot
mailing list