mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
tools/net/ynl: Add type info to struct members in generated docs
Extend the ynl doc generator to include type information for struct members, ignoring the pad type. Signed-off-by: Donald Hunter <donald.hunter@gmail.com> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20240129223458.52046-13-donald.hunter@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
9d6429c339
commit
fe09ae5fb9
1 changed files with 8 additions and 1 deletions
|
@ -189,12 +189,19 @@ def parse_operations(operations: List[Dict[str, Any]]) -> str:
|
|||
|
||||
def parse_entries(entries: List[Dict[str, Any]], level: int) -> str:
|
||||
"""Parse a list of entries"""
|
||||
ignored = ["pad"]
|
||||
lines = []
|
||||
for entry in entries:
|
||||
if isinstance(entry, dict):
|
||||
# entries could be a list or a dictionary
|
||||
field_name = entry.get("name", "")
|
||||
if field_name in ignored:
|
||||
continue
|
||||
type_ = entry.get("type")
|
||||
if type_:
|
||||
field_name += f" ({inline(type_)})"
|
||||
lines.append(
|
||||
rst_fields(entry.get("name", ""), sanitize(entry.get("doc", "")), level)
|
||||
rst_fields(field_name, sanitize(entry.get("doc", "")), level)
|
||||
)
|
||||
elif isinstance(entry, list):
|
||||
lines.append(rst_list_inline(entry, level))
|
||||
|
|
Loading…
Reference in a new issue