diff mbox series

[2/2] global_data: Fix comment for dm_driver_rt

Message ID 20201130000705.2303613-2-sjg@chromium.org
State Accepted
Commit d211e0418fed8adf4ffa7c31f067e367fb26a081
Delegated to: Tom Rini
Headers show
Series [1/2] log: Fix comment for LOGC_BOOT | expand

Commit Message

Simon Glass Nov. 30, 2020, 12:07 a.m. UTC
This comment is in the wrong format, so reports an error with
'make htmldocs'. Fix it.

Fixes: a294ead8d25 ("dm: Use an allocated array for run-time device info")
Signed-off-by: Simon Glass <sjg@chromium.org>
---

 include/asm-generic/global_data.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Heinrich Schuchardt Nov. 30, 2020, 7:31 a.m. UTC | #1
On 11/30/20 1:07 AM, Simon Glass wrote:
> This comment is in the wrong format, so reports an error with
> 'make htmldocs'. Fix it.
>
> Fixes: a294ead8d25 ("dm: Use an allocated array for run-time device info")
> Signed-off-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Tom Rini Dec. 3, 2020, 4:59 p.m. UTC | #2
On Sun, Nov 29, 2020 at 05:07:05PM -0700, Simon Glass wrote:

> This comment is in the wrong format, so reports an error with
> 'make htmldocs'. Fix it.
> 
> Fixes: a294ead8d25 ("dm: Use an allocated array for run-time device info")
> Signed-off-by: Simon Glass <sjg@chromium.org>
> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
index 0179567a2bb..d272f96bc9b 100644
--- a/include/asm-generic/global_data.h
+++ b/include/asm-generic/global_data.h
@@ -196,7 +196,7 @@  struct global_data {
 	 */
 	struct list_head uclass_root;
 # if CONFIG_IS_ENABLED(OF_PLATDATA)
-        /** Dynamic info about the driver */
+	/** @dm_driver_rt: Dynamic info about the driver */
 	struct driver_rt *dm_driver_rt;
 # endif
 #endif