diff options
author | Tom Rini <trini@konsulko.com> | 2020-06-19 16:25:50 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-19 16:25:50 -0400 |
commit | 5575f79bdaa824a90747d5a3d063b5219521b066 (patch) | |
tree | 6f25a65e9044c48192caa224936207fe1e510e81 /doc | |
parent | 04909251fdecac9d05e527b83e86e043e8df00ea (diff) | |
parent | 2a2b94a9d9a3139853c6ccd911c55db77b714a68 (diff) | |
download | u-boot-5575f79bdaa824a90747d5a3d063b5219521b066.tar.gz |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-spi into nextWIP/19Jun2020-next
- Convert fsl_espi to driver model (Chuanhua)
- Enable am335x baltos to DM_SPI (Jagan)
- Drop few powerpc board which doesn't have DM enabled (Jagan)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.omap3 | 5 | ||||
-rw-r--r-- | doc/api/index.rst | 1 | ||||
-rw-r--r-- | doc/api/rng.rst | 17 |
3 files changed, 18 insertions, 5 deletions
diff --git a/doc/README.omap3 b/doc/README.omap3 index 00bcbdba9a..8c3667b10c 100644 --- a/doc/README.omap3 +++ b/doc/README.omap3 @@ -41,11 +41,6 @@ make make omap3_evm_config make -* Pandora: - -make omap3_pandora_config -make - * Zoom MDK: make omap3_zoom1_config diff --git a/doc/api/index.rst b/doc/api/index.rst index fd3b5bdc82..b7eb5725f2 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 0000000000..b826d4fd4a --- /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: |