doc: fix references to driver-model
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 25 Feb 2020 20:35:39 +0000 (21:35 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 17 Apr 2020 16:32:36 +0000 (12:32 -0400)
Fix some errors pointed out by 'make refcheckdocs'.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
doc/README.fdt-control
drivers/i2c/davinci_i2c.c
drivers/i2c/kona_i2c.c
drivers/i2c/sh_i2c.c
drivers/i2c/soft_i2c.c
tools/dtoc/dtb_platdata.py
tools/dtoc/dtoc.py

index e53cf51875a5ab4d79918278553c865d047c6729..424d13fc5b11284fcf0fd36f837316467e74c5fb 100644 (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
 (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)
index 2c77234c60e99fbd454d27f31199d00b551fd47c..edc40f706c10bf47d519650b86662b6d754f4352 100644 (file)
@@ -8,7 +8,7 @@
  * --------------------------------------------------------
  *
  * 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>
index 0726b4c9567b5c95b1614e52a0ae3b9282d29855..8e31481c0fd97bc66f585855e5007989181d8e5a 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2013 Broadcom Corporation.
  *
  * 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>
index b69d21359397db9130f39803a448baceecb1f441..834f1f2179f7998b79768e8c206cf6d9c2ca79a1 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
  *
  * 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>
index 7f0303cc051fd6d06cea1a44247f217f1dd564f8..9ad1c281ff2a8e0d82ac7dd65e026d8cd80a26b4 100644 (file)
@@ -12,7 +12,7 @@
  * Neil Russell.
  *
  * 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>
index 037e82c8bbd3b50cd192467601f1b2e5dff3dd3b..90a9e1a626912f6230d4e6c4016bcb1cadb10319 100644 (file)
@@ -423,7 +423,7 @@ class DtbPlatdata(object):
 
         This writes out the body of a header file consisting of structure
         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('#include <stdbool.h>\n')
@@ -527,7 +527,7 @@ class DtbPlatdata(object):
         U_BOOT_DEVICE() declarations for each valid node. Where a node has
         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.
         """
         self.out_header()
index b3596a5918fe2a1f420064a25eec01da5a63f684..f31cba900e56aa92bfd8ad171bfd29c24c3ad284 100755 (executable)
@@ -22,7 +22,7 @@ Dtoc produces two output files:
 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
 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