doc: fix references to driver-model

Fix some errors pointed out by 'make refcheckdocs'.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Heinrich Schuchardt 2020-02-25 21:35:39 +01:00 committed by Tom Rini
parent ecb3a0a154
commit 2799a69ee8
7 changed files with 8 additions and 8 deletions

View File

@ -182,7 +182,7 @@ U-Boot can be divided into three phases: TPL, SPL and U-Boot proper.
The full device tree is available to U-Boot proper, but normally only a subset The full device tree is available to U-Boot proper, but normally only a subset
(or none at all) is available to TPL and SPL. See 'Pre-Relocation Support' and (or none at all) is available to TPL and SPL. See 'Pre-Relocation Support' and
'SPL Support' in doc/driver-model/README.txt for more details. 'SPL Support' in doc/driver-model/design.rst for more details.
Using several DTBs in the SPL (CONFIG_SPL_MULTI_DTB) Using several DTBs in the SPL (CONFIG_SPL_MULTI_DTB)

View File

@ -8,7 +8,7 @@
* -------------------------------------------------------- * --------------------------------------------------------
* *
* NOTE: This driver should be converted to driver model before June 2017. * NOTE: This driver should be converted to driver model before June 2017.
* Please see doc/driver-model/i2c-howto.txt for instructions. * Please see doc/driver-model/i2c-howto.rst for instructions.
*/ */
#include <common.h> #include <common.h>

View File

@ -3,7 +3,7 @@
* Copyright 2013 Broadcom Corporation. * Copyright 2013 Broadcom Corporation.
* *
* NOTE: This driver should be converted to driver model before June 2017. * NOTE: This driver should be converted to driver model before June 2017.
* Please see doc/driver-model/i2c-howto.txt for instructions. * Please see doc/driver-model/i2c-howto.rst for instructions.
*/ */
#include <common.h> #include <common.h>

View File

@ -4,7 +4,7 @@
* Copyright (C) 2011, 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> * Copyright (C) 2011, 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
* *
* NOTE: This driver should be converted to driver model before June 2017. * NOTE: This driver should be converted to driver model before June 2017.
* Please see doc/driver-model/i2c-howto.txt for instructions. * Please see doc/driver-model/i2c-howto.rst for instructions.
*/ */
#include <common.h> #include <common.h>

View File

@ -12,7 +12,7 @@
* Neil Russell. * Neil Russell.
* *
* NOTE: This driver should be converted to driver model before June 2017. * NOTE: This driver should be converted to driver model before June 2017.
* Please see doc/driver-model/i2c-howto.txt for instructions. * Please see doc/driver-model/i2c-howto.rst for instructions.
*/ */
#include <common.h> #include <common.h>

View File

@ -423,7 +423,7 @@ class DtbPlatdata(object):
This writes out the body of a header file consisting of structure This writes out the body of a header file consisting of structure
definitions for node in self._valid_nodes. See the documentation in definitions for node in self._valid_nodes. See the documentation in
README.of-plat for more information. doc/driver-model/of-plat.rst for more information.
""" """
self.out_header() self.out_header()
self.out('#include <stdbool.h>\n') self.out('#include <stdbool.h>\n')
@ -527,7 +527,7 @@ class DtbPlatdata(object):
U_BOOT_DEVICE() declarations for each valid node. Where a node has U_BOOT_DEVICE() declarations for each valid node. Where a node has
multiple compatible strings, a #define is used to make them equivalent. multiple compatible strings, a #define is used to make them equivalent.
See the documentation in doc/driver-model/of-plat.txt for more See the documentation in doc/driver-model/of-plat.rst for more
information. information.
""" """
self.out_header() self.out_header()

View File

@ -22,7 +22,7 @@ Dtoc produces two output files:
This tool is used in U-Boot to provide device tree data to SPL without This tool is used in U-Boot to provide device tree data to SPL without
increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA increasing the code size of SPL. This supports the CONFIG_SPL_OF_PLATDATA
options. For more information about the use of this options and tool please options. For more information about the use of this options and tool please
see doc/driver-model/of-plat.txt see doc/driver-model/of-plat.rst
""" """
from __future__ import print_function from __future__ import print_function