]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
drivers/net/r6040.c: Eliminate double sizeof
authorJulia Lawall <julia@diku.dk>
Mon, 23 Jun 2008 21:12:31 +0000 (23:12 +0200)
committerJeff Garzik <jgarzik@redhat.com>
Fri, 27 Jun 2008 05:28:25 +0000 (01:28 -0400)
commit3f6602ad56dc538a846367bd6a05ac7ac4d3e641
tree9642090d7b0f17a0f5ba8ff378e1ee1eebb2d44a
parent54299ef7e9ae4b5d47b02f3abea168cdc62a6f70
drivers/net/r6040.c: 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)
- )
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/net/r6040.c