From 12f2a47945946731bd2f4a64e4720daaabc95106 Mon Sep 17 00:00:00 2001 From: Joe Perches Date: Mon, 24 Mar 2014 10:45:12 -0700 Subject: [PATCH] chelsio: Remove addressof casts to same type Using addressof then casting to the original type is pointless, so remove these unnecessary casts. Done via coccinelle script: $ cat typecast.cocci @@ type T; T foo; @@ - (T *)&foo + &foo Signed-off-by: Joe Perches Signed-off-by: David S. Miller --- Reading git-format-patch failed