Use the correct enum name and member name to avoid kernel-doc warnings: Warning: arch/powerpc/platforms/ps3/htab.c:28 expecting prototype for enum lpar_vas_id. Prototype was for enum ps3_lpar_vas_id instead Warning: arch/powerpc/platforms/ps3/htab.c:28 Enum value 'PS3_LPAR_VAS_ID_CURRENT' not described in enum 'ps3_lpar_vas_id' Warning: arch/powerpc/platforms/ps3/htab.c:28 Excess enum value '@lpar_vas_id_current' description in 'ps3_lpar_vas_id'
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/htab.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20260828.orig/arch/powerpc/platforms/ps3/htab.c +++ linux-next-20260828/arch/powerpc/platforms/ps3/htab.c @@ -18,8 +18,8 @@ #include "platform.h" /** - * enum lpar_vas_id - id of LPAR virtual address space. - * @lpar_vas_id_current: Current selected virtual address space + * enum ps3_lpar_vas_id - id of LPAR virtual address space. + * @PS3_LPAR_VAS_ID_CURRENT: Current selected virtual address space * * Identify the target LPAR address space. */
