diff mbox

[U-Boot] kernel-doc: Adjust "/**" comment for non-kernel-doc content.

Message ID alpine.LFD.2.20.1605220856200.14721@localhost.localdomain
State Deferred
Delegated to: Tom Rini
Headers show

Commit Message

Robert P. J. Day May 22, 2016, 12:58 p.m. UTC
Don't use /** openings for non-kernel-doc content, as it breaks the
processing of that file.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---
diff mbox

Patch

diff --git a/include/linker_lists.h b/include/linker_lists.h
index 76898ab..731ec29 100644
--- a/include/linker_lists.h
+++ b/include/linker_lists.h
@@ -21,7 +21,7 @@ 

 #if !defined(__ASSEMBLY__)

-/**
+/*
  * A linker list is constructed by grouping together linker input
  * sections, each containing one entry of the list. Each input section
  * contains a constant initialized variable which holds the entry's
@@ -173,7 +173,7 @@ 
 			__attribute__((unused,				\
 			section(".u_boot_list_2_"#_list"_2_"#_name)))

-/**
+/*
  * We need a 0-byte-size type for iterator symbols, and the compiler
  * does not allow defining objects of C type 'void'. Using an empty
  * struct is allowed by the compiler, but causes gcc versions 4.4 and