From nobody Sat Sep 26 13:08:49 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 534B5377EA2 for ; Tue, 1 Sep 2026 06:34:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; cv=none; b=oDL3txqm4wekcCL1irjYi2Mn52PEU95ZRtjbtgUMqB6aIy8+yjQrnpIIPi60bGjORwrnx01tuiHPEd1nguaeCOr2LMOgSPtHNOQOVEIz2Lj08w4jeD4gCJS8E07SYm5KAt1Myk/AcD4M/jEo/Pg6Bz8BndC34K2pVJLslnz24PM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; c=relaxed/simple; bh=5neDxJe69Fg1AaZdXx27SUjiaVeG8Vs3gIYIr2KzwM4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=m9Eo/ZOfZ10yhrI30/tM9PGseSD7DCDPUmUl6dBIzBZyUPGIhrfnmPrLGr3lEpIfTY4YLxBTd9VeVzN5jUuHEVnRlSoQecJZsb7qrXe2EFHIppKl6aDWcBZGL87MK/oohyo57woAulkMRZAa5HnshU5MxrOcs0oDy8n4xrc558A= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=YCO336YV; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="YCO336YV" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=/URtJhh5qYgdD+SvrO47CWxV2uFOw6FeCWrobwxfu1o=; b=YCO336YVvU0hxZ5piXMZqbJCdN saNrXtXc7Nnyhvp5PHB46NIO6ByIbvbHlmKYZzFEA8m7kNPozght5CJMCeqyU5Lg1ApPfgD4B6jHl 2WE9BqfHx3l8LQsyY7bXLQ+bDrSat6WnBCgCbeHHOKs9sQOyH0anv11V2NZlGveKI/imm64MoFPhF /KEc1MSz/4+8WdjVdqb/QMlyT6dF25Y5iSlG2P4wj8nNnIJ2eRSy55jhz6x5NzK1egkKVLZ0Zs5bQ Iul7PAzeNke/Z28knRh0/g0x2ZaSbtWx8bRaA+VUwblHjBe/mS55jqJeV1qbhMW0W2st/7xg1PPr0 14mFxgKA==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1x1I4B-0000000B46j-2s9E; Tue, 01 Sep 2026 06:33:55 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Geoff Levand , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , "Christophe Leroy (CS GROUP)" , linuxppc-dev@lists.ozlabs.org Subject: [PATCH 1/4] powerpc/ps3: platform.h: fix enum ps3_spu_resource_type kernel-doc Date: Mon, 31 Aug 2026 23:33:51 -0700 Message-ID: <20260901063354.4012138-2-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260901063354.4012138-1-rdunlap@infradead.org> References: <20260901063354.4012138-1-rdunlap@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Use the correct enum name and member names to eliminate kernel-doc warnings: Warning: arch/powerpc/platforms/ps3/platform.h:240 expecting prototype for enum spu_resource_type. Prototype was for enum ps3_spu_resource_type instead Warning: arch/powerpc/platforms/ps3/platform.h:240 Enum value 'PS3_SPU_RESOURCE_TYPE_SHARED' not described in enum 'ps3_spu_resource_type' Warning: arch/powerpc/platforms/ps3/platform.h:240 Enum value 'PS3_SPU_RESOURCE_TYPE_EXCLUSIVE' not described in enum 'ps3_spu_resource_type' Warning: arch/powerpc/platforms/ps3/platform.h:240 Excess enum value '@spu_resource_type_shared' description in 'ps3_spu_resource_type' Warning: arch/powerpc/platforms/ps3/platform.h:240 Excess enum value '@spu_resource_type_exclusive' description in 'ps3_spu_resource_type' Also fix misspellings of "partitions." Signed-off-by: Randy Dunlap --- Cc: Geoff Levand Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Nicholas Piggin Cc: Christophe Leroy (CS GROUP) Cc: linuxppc-dev@lists.ozlabs.org arch/powerpc/platforms/ps3/platform.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- linux-next-20260828.orig/arch/powerpc/platforms/ps3/platform.h +++ linux-next-20260828/arch/powerpc/platforms/ps3/platform.h @@ -228,9 +228,10 @@ int ps3_repository_read_boot_dat_info(u6 /* repository spu info */ =20 /** - * enum spu_resource_type - Type of spu resource. - * @spu_resource_type_shared: Logical spu is shared with other partions. - * @spu_resource_type_exclusive: Logical spu is not shared with other part= ions. + * enum ps3_spu_resource_type - Type of spu resource. + * @PS3_SPU_RESOURCE_TYPE_SHARED: Logical spu is shared with other partiti= ons. + * @PS3_SPU_RESOURCE_TYPE_EXCLUSIVE: Logical spu is not shared with other + * partitions. * * Returned by ps3_repository_read_spu_resource_id(). */ From nobody Sat Sep 26 13:08:49 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AD733365A02 for ; Tue, 1 Sep 2026 06:34:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244445; cv=none; b=Ian5orA0wkpIb6buSZPd9xKo3LxWMuUqnJE4XRWKYiQbsLvERSdJ7WHIASNhdTeoE9P/5BGiFe+HReXysx/3diyWaZNw5pCIL8l2U4Rx0Rams2n2a8U1iK+qJMJdiAxIvjsbfPNMAME5gO76kgfV3ZbpgZd1lxF9rFm7zuTEdPs= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244445; c=relaxed/simple; bh=dUUSKCXPgJHto9UM2a7zff0YvwWej158ZwHZqVOCBCE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=t198c4eMOfq3lL2nXVdHVpK2bAHvtizySK5e9iRhoVbZNfUA/him49UDa2zVVorFNXkItMTObsKTw8jdJsdisUPULvKDLDrIPZMdHe0x1teETdxu5hTsh5XbZ2tvZruQIL/q5bFspdNVl9ES4S+QvlsXFGjj1PcXUkKBH0Hl0aQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=LqVd9zUX; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="LqVd9zUX" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=cm7AnhXk5wAc7XObEF0sJTRKiswy58SF5A5r5BOqqXE=; b=LqVd9zUXioSOB4b05NZIh5RUYZ BeOBC07TghMyIResQYOdOTkxTJmFjHDjM4d1L3lmuQtkgN5IfPxJjlhq6YuL2OgThdqHO3zzqXTDL 7+NlHrtfVjpftif0rbsQdu0D15TRFPyIdRLGjMDGyuOnHjGfcv+myJ/gX3zSkoCFPiIZp4ZR01sn6 SoDpFThkt6x0QkDbHFla+FFgyQbANBu8ydaaxkylBXS5dVwO2hmPPP4VuQeJqXC3Z43j+rJkhHvXi HUx8qTdsQzEjcxFlMRuEVupF9Eaz3j5cdc5HhqK5kDJR083LRVJObwZ8hbK6sLzC1VpLVChD9HRjY yk+3881A==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1x1I4B-0000000B46j-4073; Tue, 01 Sep 2026 06:33:56 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Geoff Levand , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , "Christophe Leroy (CS GROUP)" , linuxppc-dev@lists.ozlabs.org Subject: [PATCH 2/4] powerpc/ps3: htab.c: fix enum ps3_lpar_vas_id kernel-doc Date: Mon, 31 Aug 2026 23:33:52 -0700 Message-ID: <20260901063354.4012138-3-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260901063354.4012138-1-rdunlap@infradead.org> References: <20260901063354.4012138-1-rdunlap@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" 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 --- Cc: Geoff Levand Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Nicholas Piggin Cc: Christophe Leroy (CS GROUP) Cc: linuxppc-dev@lists.ozlabs.org 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" =20 /** - * 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. */ From nobody Sat Sep 26 13:08:49 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AD84E37A498 for ; Tue, 1 Sep 2026 06:34:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; cv=none; b=Ua0YBcZOpXFOXXn5pAQEomuHr6064Fh5cXWKAnGqEiaz6iAASOrQl2iueoL52Upl6CDNVdGLQ2MdkiPfjpangpPtOsgNCQR0ud4x43I+A/984ne6VsHDef9QjN0N1KKZ0uUB9ii+Y3L4AFE1SXS++m4wZAvLfiVVw8cOhkpW8fg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; c=relaxed/simple; bh=/9pYpwI/5Bq1wq5YcYCFdVp8axHssO4A8zu71zerNGc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=opBW+0P+pSU4iYcCQrBh2PW7Nimp5gICCal438lZp2Ig4McZso8zGcz9l1Yhs7Y3CJzxlDcPt68ZhgVBnDkdiB7wMl9iDjE0JvpdZAdcm3zFKFJ2ha/e4ZKidcfKdpEfdqlvK1iT7Bzv6pPJlXfNZJCCe7VesghxJylMngqaCTI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=NtGiVFwC; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="NtGiVFwC" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=Er0GRhCzdVU5yeaX5s1ElRVbYAULyDK/JtS7EUoH5DA=; b=NtGiVFwCiayfmXPuPDsb8GhQyq V7wW1OWlpbgqmJNsvjxJEHcHjfPfyXnJPi5RQf6RQ98iIK8oJWkEXocIxtIs6LQKiVvr5oUreeAwi NLZIwv1fauKhCaykoXyKYWGZAS4PsRrkmIEQ1+W9wggaeqaNWpro72e12GvoQ8tNzhGdJH7s2iv43 IHoY3M9oUE5wKTVQWvih76QJ/lMngpF3W1TTF0P4VZVzmwDAcsCURPVCL7WyP/FnCdDc+YZyySEN9 l4L5MH/xnrafYjs/h06CT4gUHsaSP73o6OSeNsLKPHyYVARoDJj3Y4YqwtrY3ewR2hC4kcrSbIBiT bk1GZaxA==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1x1I4C-0000000B46j-0x7Q; Tue, 01 Sep 2026 06:33:56 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Geoff Levand , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , "Christophe Leroy (CS GROUP)" , linuxppc-dev@lists.ozlabs.org Subject: [PATCH 3/4] powerpc/ps3: mm.c: clean up kernel-doc issues Date: Mon, 31 Aug 2026 23:33:53 -0700 Message-ID: <20260901063354.4012138-4-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260901063354.4012138-1-rdunlap@infradead.org> References: <20260901063354.4012138-1-rdunlap@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Use the correct format for struct members and function parameters. Use the correct function names in kernel-doc comments. Use the correct format for function descriptions. This eliminates these kernel-doc warnings: Warning: arch/powerpc/platforms/ps3/mm.c:102 struct member 'vas_id' not described in 'map' Warning: arch/powerpc/platforms/ps3/mm.c:195 missing initial short description on line: * ps3_mm_vas_destroy - Warning: arch/powerpc/platforms/ps3/mm.c:514 function parameter 'c_out' not described in 'dma_sb_map_pages' Warning: arch/powerpc/platforms/ps3/mm.c:708 expecting prototype for dma_region_free(). Prototype was for dma_sb_region_free() instead Warning: arch/powerpc/platforms/ps3/mm.c:1092 expecting prototype for dma_unmap_area_linear(). Prototype was for dma_sb_unmap_area_linear() instead This leaves around 15 unrepaired kernel-doc warnings. Signed-off-by: Randy Dunlap --- Cc: Geoff Levand Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Nicholas Piggin Cc: Christophe Leroy (CS GROUP) Cc: linuxppc-dev@lists.ozlabs.org arch/powerpc/platforms/ps3/mm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- linux-next-20260828.orig/arch/powerpc/platforms/ps3/mm.c +++ linux-next-20260828/arch/powerpc/platforms/ps3/mm.c @@ -79,7 +79,7 @@ struct mem_region { /** * struct map - address space state variables holder * @total: total memory available as reported by HV - * @vas_id - HV virtual address space id + * @vas_id: HV virtual address space id * @htab_size: htab size in bytes * * The HV virtual address space (vas) allows for hotplug memory regions. @@ -193,7 +193,7 @@ fail: } =20 /** - * ps3_mm_vas_destroy - + * ps3_mm_vas_destroy - destroy the virtual address space * * called during kexec sequence with MMU off. */ @@ -504,7 +504,7 @@ static int dma_ioc0_free_chunk(struct dm * @r: Pointer to a struct ps3_dma_region. * @phys_addr: Starting physical address of the area to map. * @len: Length in bytes of the area to map. - * c_out: A pointer to receive an allocated struct dma_chunk for this area. + * @c_out: A pointer to receive an allocated struct dma_chunk for this are= a. * * This is the lowest level dma mapping routine, and is the one that will * make the HV call to add the pages into the io controller address space. @@ -699,7 +699,7 @@ static int dma_ioc0_region_create(struct } =20 /** - * dma_region_free - Free a device dma region. + * dma_sb_region_free - Free a device dma region. * @r: Pointer to a struct ps3_dma_region. * * This is the lowest level dma region free routine, and is the one that @@ -1081,7 +1081,7 @@ static int dma_sb_map_area_linear(struct } =20 /** - * dma_unmap_area_linear - Unmap an area of memory from a device dma regio= n. + * dma_sb_unmap_area_linear - Unmap an area of memory from a device dma re= gion. * @r: Pointer to a struct ps3_dma_region. * @bus_addr: The starting ioc bus address of the area to unmap. * @len: Length in bytes of the area to unmap. From nobody Sat Sep 26 13:08:49 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AD7C2379C55 for ; Tue, 1 Sep 2026 06:34:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; cv=none; b=OEOgr+C918zO/R4m/mLDHFzdxavzMn0Sn7jxbr/J6cF29HQEDxpUDr/eAJFJNNWTacxYlCHKhznPqAA20x82/BsKJmJ4aw7Hn0ctXBZvQyPgIB0i+n4bRN1if79iX3aDXtlXkMVCRnwXthvRZiuWUYho8r1DOo5U4CG8yhxb0Tg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788244444; c=relaxed/simple; bh=iVZEVKBJDamgXMTCVnBuJT3YlBWMIIWpdyumBwSFW+0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ACYfdJFo9jBuvrwf7h3CqO90CzqATMwJvBCekdpJt9elfzkDstvGcjHkuburB56mElupyH6RHLeMvdt9dAYagjiJRcnxIVo40rtq+5YoWzK1dRaPJ9pF7Zwo3J4n3jXVmcKZhdSgdVmWF4ZuBffaRC/1MKAYArIEARTrOwRFusc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=qw/k8dT2; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="qw/k8dT2" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=j5wlQy9DCaktYGyQf5jBA58+1SExlqWK2qFF4AF0tHE=; b=qw/k8dT2WCu2Q2i5MYxb6aIL62 sKzPUd55TrAGjMvZCQVZsWPghnPaOb2qI+fY6Le6/UH048yVPLNGMFG4q8HVE8pTwOF0GfdaKBeky 1eJ5KoC5DZAbJ4DfctwwNl0au+plyswCH1N3bOi+K74KtixzGRIYlquK8jRpp+H0Uif2aHOCpbZeD 4Wc1JPS1nnD/f8Jy17oRD11O/nKTM8a4pv+hdAPrBosf3Y8FhX8LInbS9yZIao8NWjLluiHVjcS23 aRsDNujkUFyAiw3BrYU2jnFaxLkHWvk8DtT4ewrrfl8qYIhKsXg2lFtS+Qu0i91FYfiixjESpnYbS OpCFl2jg==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1x1I4C-0000000B46j-27aT; Tue, 01 Sep 2026 06:33:56 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Geoff Levand , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , "Christophe Leroy (CS GROUP)" , linuxppc-dev@lists.ozlabs.org Subject: [PATCH 4/4] powerpc/ps3: os-area.c: fix some kernel-doc warnings Date: Mon, 31 Aug 2026 23:33:54 -0700 Message-ID: <20260901063354.4012138-5-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260901063354.4012138-1-rdunlap@infradead.org> References: <20260901063354.4012138-1-rdunlap@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" 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 --- Cc: Geoff Levand Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Nicholas Piggin Cc: Christophe Leroy (CS GROUP) Cc: linuxppc-dev@lists.ozlabs.org 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 l= par. * The current system configuration allocates 1K (two segments) for other = os @@ -139,7 +140,7 @@ struct os_area_db { u8 _db_data[1000]; }; =20 -/** +/* * enum os_area_db_owner - Data owners. */ =20 @@ -182,7 +183,7 @@ static const struct os_area_db_id os_are =20 #define SECONDS_FROM_1970_TO_2000 946684800LL =20 -/** +/* * struct saved_params - Static working copies of data from the PS3 'os ar= ea'. * * The order of preference we use for the rtc_diff source: