From: Joe Perches Date: Mon, 24 Mar 2014 20:15:38 +0000 (-0700) Subject: carl9170: Remove casts of pointer to same type X-Git-Tag: v3.15-rc1~113^2~18^2^2~36 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=8986992de4225871d171e8bdd82abd0eeab978ff;p=~emulex%2Finfiniband.git carl9170: Remove casts of pointer to same type Casting a pointer to a pointer of the same type is pointless, so remove these unnecessary casts. Done via coccinelle script: $ cat typecast_2.cocci @@ type T; T *foo; @@ - (T *)foo + foo Signed-off-by: Joe Perches Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/carl9170/rx.c b/drivers/net/wireless/ath/carl9170/rx.c index 536bc46a291..924135b8e57 100644 --- a/drivers/net/wireless/ath/carl9170/rx.c +++ b/drivers/net/wireless/ath/carl9170/rx.c @@ -572,7 +572,7 @@ static void carl9170_ps_beacon(struct ar9170 *ar, void *data, unsigned int len) static void carl9170_ba_check(struct ar9170 *ar, void *data, unsigned int len) { - struct ieee80211_bar *bar = (void *) data; + struct ieee80211_bar *bar = data; struct carl9170_bar_list_entry *entry; unsigned int queue;