Re: [PATCH] powerpc/ps3: Remove unused struct table in setup_areas()

From: Madhavan Srinivasan

Date: Tue Jul 28 2026 - 06:39:57 EST



On 7/28/26 3:14 PM, Amit Machhiwal wrote:
On 2026/07/28 11:32 AM, Madhavan Srinivasan wrote:
On 7/27/26 6:47 PM, Christophe Leroy (CS GROUP) wrote:

Le 12/07/2026 à 17:13, Thorsten Blum a écrit :
The local table structure is not used - remove it.

Remove % in the comment while at it.

Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx>
Looks like it's never been used since commit de91a5342995 ("[POWERPC]
ps3: add spu support") that introduced it.


Reviewed-by: Christophe Leroy (CS GROUP) <chleroy@xxxxxxxxxx>

I have no opinion about the %0 versus 0, is it worth the change ?
FYI.. I have added this patch as-is to my fixes-test
not waiting for v2
The v2 was already sent Maddy.

https://lore.kernel.org/all/20260713091731.97212-3-thorsten.blum@xxxxxxxxx/
yes I have picked up the v2. My bad, sorry for the noise
Maddy
Thanks,
Amit

Maddy

---
  arch/powerpc/platforms/ps3/spu.c | 4 +---
  1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/powerpc/platforms/ps3/spu.c
b/arch/powerpc/platforms/ps3/spu.c
index e817def7f424..c904f9fa1caa 100644
--- a/arch/powerpc/platforms/ps3/spu.c
+++ b/arch/powerpc/platforms/ps3/spu.c
@@ -185,13 +185,11 @@ static void spu_unmap(struct spu *spu)
   * The current HV requires the spu shadow regs to be mapped with the
   * PTE page protection bits set as read-only.
   *
- * Returns: %0 on success or -errno on error.
+ * Returns: 0 on success or -errno on error.
   */
    static int __init setup_areas(struct spu *spu)
  {
-    struct table {char* name; unsigned long addr; unsigned long size;};
-
      spu_pdata(spu)->shadow = ioremap_prot(spu_pdata(spu)->shadow_addr,
                            sizeof(struct spe_shadow),
pgprot_noncached_wc(PAGE_KERNEL_RO));