Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08c6e3a5 authored by Julia Lawall's avatar Julia Lawall Committed by Kumar Gala
Browse files

arch/powerpc: Eliminate double sizeof

Taking sizeof the result of sizeof is quite strange and does not seem to be
what is wanted here.

This was fixed using the following semantic patch.
(http://www.emn.fr/x-info/coccinelle/

)

// <smpl>
@@
expression E;
@@

- sizeof (
  sizeof (E)
- )

@@
type T;
@@

- sizeof (
  sizeof (T)
- )
// </smpl>

Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
Acked-by: default avatarScott Wood <scottwood@freescale.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 7f3ea17f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -186,7 +186,7 @@ out_unmap_regs:
	iounmap(priv->regs);
	iounmap(priv->regs);
out_free_bootmem:
out_free_bootmem:
	free_bootmem((unsigned long)priv,
	free_bootmem((unsigned long)priv,
	             sizeof(sizeof(struct pq2ads_pci_pic)));
	             sizeof(struct pq2ads_pci_pic));
	of_node_put(np);
	of_node_put(np);
out_unmap_irq:
out_unmap_irq:
	irq_dispose_mapping(irq);
	irq_dispose_mapping(irq);