diff options
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/Kbuild.src | 1 | ||||
| -rw-r--r-- | shell/random.c | 11 | ||||
| -rw-r--r-- | shell/random.h | 3 |
3 files changed, 0 insertions, 15 deletions
diff --git a/shell/Kbuild.src b/shell/Kbuild.src index a287fce4e..6bba4989f 100644 --- a/shell/Kbuild.src +++ b/shell/Kbuild.src | |||
| @@ -9,4 +9,3 @@ lib-y:= | |||
| 9 | INSERT | 9 | INSERT |
| 10 | 10 | ||
| 11 | lib-$(CONFIG_FEATURE_SH_MATH) += math.o | 11 | lib-$(CONFIG_FEATURE_SH_MATH) += math.o |
| 12 | lib-$(CONFIG_FEATURE_PRNG_SHELL) += random.o | ||
diff --git a/shell/random.c b/shell/random.c index ffe0cc937..56c7c5a3c 100644 --- a/shell/random.c +++ b/shell/random.c | |||
| @@ -19,17 +19,6 @@ | |||
| 19 | # include "random.h" | 19 | # include "random.h" |
| 20 | # define RAND_BASH_MASK 0x7fff | 20 | # define RAND_BASH_MASK 0x7fff |
| 21 | 21 | ||
| 22 | # if ENABLE_FEATURE_PRNG_SHELL | ||
| 23 | uint32_t FAST_FUNC | ||
| 24 | next_random(random_t *rnd) | ||
| 25 | { | ||
| 26 | return full_random(rnd) & RAND_BASH_MASK; | ||
| 27 | } | ||
| 28 | # undef RAND_BASH_MASK | ||
| 29 | # define RAND_BASH_MASK 0xffffffff | ||
| 30 | # define next_random full_random | ||
| 31 | # endif | ||
| 32 | |||
| 33 | #else | 22 | #else |
| 34 | # include <stdint.h> | 23 | # include <stdint.h> |
| 35 | # include <unistd.h> | 24 | # include <unistd.h> |
diff --git a/shell/random.h b/shell/random.h index 75fe0f69f..c4eb44c13 100644 --- a/shell/random.h +++ b/shell/random.h | |||
| @@ -35,9 +35,6 @@ typedef struct random_t { | |||
| 35 | ((rnd)->galois_LFSR = 0) | 35 | ((rnd)->galois_LFSR = 0) |
| 36 | 36 | ||
| 37 | uint32_t next_random(random_t *rnd) FAST_FUNC; | 37 | uint32_t next_random(random_t *rnd) FAST_FUNC; |
| 38 | #if ENABLE_FEATURE_PRNG_SHELL | ||
| 39 | uint32_t full_random(random_t *rnd) FAST_FUNC; | ||
| 40 | #endif | ||
| 41 | 38 | ||
| 42 | POP_SAVED_FUNCTION_VISIBILITY | 39 | POP_SAVED_FUNCTION_VISIBILITY |
| 43 | 40 | ||
