[PATCH] device property: add missing kernel-doc for property_entry
Randy Dunlap <[email protected]>
| Newsgroups | dev.linux.lists.driver-core,org.kernel.vger.linux-acpi,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Add kernel-doc for the missing fields in union value: Warning: include/linux/property.h:406 struct member 'u8_data' not described in 'property_entry' Warning: include/linux/property.h:406 struct member 'u16_data' not described in 'property_entry' Warning: include/linux/property.h:406 struct member 'u32_data' not described in 'property_entry' Warning: include/linux/property.h:406 struct member 'u64_data' not described in 'property_entry' Warning: include/linux/property.h:406 struct member 'str' not described in 'property_entry' Signed-off-by: Randy Dunlap <[email protected]> --- Cc: Andy Shevchenko <[email protected]> Cc: Daniel Scally <[email protected]> Cc: Heikki Krogerus <[email protected]> Cc: Sakari Ailus <[email protected]> Cc: [email protected] Cc: Greg Kroah-Hartman <[email protected]> Cc: "Rafael J. Wysocki" <[email protected]> Cc: Danilo Krummrich <[email protected]> Cc: [email protected] include/linux/property.h | 5 +++++ 1 file changed, 5 insertions(+) --- linux-next-20260717.orig/include/linux/property.h +++ linux-next-20260717/include/linux/property.h @@ -388,6 +388,11 @@ struct software_node_ref_args { * @type: Type of the data in unions. * @pointer: Pointer to the property when it is not stored inline. * @value: Value of the property when it is stored inline. + * @u8_data: @value as an array of u8 numbers + * @u16_data: @value as an array of u16 numbers + * @u32_data: @value as an array of u32 numbers + * @u64_data: @value as an array of u64 numbers + * @str: @value as an array of char pointers */ struct property_entry { const char *name;