diff options
author | Heinrich Schuchardt | 2020-06-13 12:29:52 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-06-14 21:07:20 +0200 |
commit | c7ff87e0ae3e619b5718eafcdee433af0a46df8b (patch) | |
tree | cc1cbd0e42ae924ffeeb4ba2750cc038d8622a94 /doc | |
parent | 9d886fd6a0888f121cd280d11434812a386045a2 (diff) |
doc: random number generation
Add random number generation APIs to the HTML documentation.
Fix style issues.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/index.rst | 1 | ||||
-rw-r--r-- | doc/api/rng.rst | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/api/index.rst b/doc/api/index.rst index fd3b5bdc825..b7eb5725f26 100644 --- a/doc/api/index.rst +++ b/doc/api/index.rst @@ -9,5 +9,6 @@ U-Boot API documentation dfu efi linker_lists + rng serial unicode diff --git a/doc/api/rng.rst b/doc/api/rng.rst new file mode 100644 index 00000000000..b826d4fd4a5 --- /dev/null +++ b/doc/api/rng.rst @@ -0,0 +1,17 @@ +.. SPDX-License-Identifier: GPL-2.0+ +.. Copyright (c) 2018 Heinrich Schuchardt + +Random number generation +======================== + +Hardware random number generation +--------------------------------- + +.. kernel-doc:: include/rng.h + :internal: + +Pseudo random number generation +------------------------------- + +.. kernel-doc:: include/rand.h + :internal: |