Add one struct member kernel-doc description. Convert an enum and a struct to common C comments instead of kernel-doc comments to avoid warnings.
Warning: arch/powerpc/platforms/ps3/os-area.c:139 struct member '_db_data' not described in 'os_area_db' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_ANY' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_NONE' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_PROTOTYPE' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_LINUX' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_PETITBOOT' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:152 Enum value 'OS_AREA_DB_OWNER_MAX' not described in enum 'os_area_db_owner' Warning: arch/powerpc/platforms/ps3/os-area.c:197 struct member 'valid' not described in 'saved_params' Warning: arch/powerpc/platforms/ps3/os-area.c:197 struct member 'rtc_diff' not described in 'saved_params' Warning: arch/powerpc/platforms/ps3/os-area.c:197 struct member 'av_multi_out' not described in 'saved_params' This leaves around 20 unrepaired kernel-doc warnings. Signed-off-by: Randy Dunlap <[email protected]> --- Cc: Geoff Levand <[email protected]> Cc: Madhavan Srinivasan <[email protected]> Cc: Michael Ellerman <[email protected]> Cc: Nicholas Piggin <[email protected]> Cc: Christophe Leroy (CS GROUP) <[email protected]> Cc: [email protected] arch/powerpc/platforms/ps3/os-area.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- linux-next-20260828.orig/arch/powerpc/platforms/ps3/os-area.c +++ linux-next-20260828/arch/powerpc/platforms/ps3/os-area.c @@ -119,6 +119,7 @@ struct os_area_params { * @count_32: number of usable 32 bit index entries * @index_16: byte offset of the database id index for 16 bit variables. * @count_16: number of usable 16 bit index entries + * @_db_data: 1000 bytes of shared flash memory database * * Flash rom storage for exclusive use by guests running in the other os lpar. * The current system configuration allocates 1K (two segments) for other os @@ -139,7 +140,7 @@ struct os_area_db { u8 _db_data[1000]; }; -/** +/* * enum os_area_db_owner - Data owners. */ @@ -182,7 +183,7 @@ static const struct os_area_db_id os_are #define SECONDS_FROM_1970_TO_2000 946684800LL -/** +/* * struct saved_params - Static working copies of data from the PS3 'os area'. * * The order of preference we use for the rtc_diff source:
