diff options
author | Joe Perches <joe@perches.com> | 2012-06-03 13:41:40 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-04 11:45:11 -0400 |
commit | e3192690a3c889767d1161b228374f4926d92af0 (patch) | |
tree | a2acbe06cc2efedb6002055f9d4ffd7f2ba6ec75 /net/decnet | |
parent | 29a6b6c060445eb46528785d51a2d8b0e6d898c4 (diff) |
net: Remove casts to same type
Adding casts of objects to the same type is unnecessary
and confusing for a human reader.
For example, this cast:
int y;
int *p = (int *)&y;
I used the coccinelle script below to find and remove these
unnecessary casts. I manually removed the conversions this
script produces of casts with __force and __user.
@@
type T;
T *p;
@@
- (T *)p
+ p
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet')
-rw-r--r-- | net/decnet/dn_nsp_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/decnet/dn_nsp_out.c b/net/decnet/dn_nsp_out.c index 564a6ad13ce7..8a96047c7c94 100644 --- a/net/decnet/dn_nsp_out.c +++ b/net/decnet/dn_nsp_out.c | |||
@@ -322,7 +322,7 @@ static __le16 *dn_mk_ack_header(struct sock *sk, struct sk_buff *skb, unsigned c | |||
322 | /* Set "cross subchannel" bit in ackcrs */ | 322 | /* Set "cross subchannel" bit in ackcrs */ |
323 | ackcrs |= 0x2000; | 323 | ackcrs |= 0x2000; |
324 | 324 | ||
325 | ptr = (__le16 *)dn_mk_common_header(scp, skb, msgflag, hlen); | 325 | ptr = dn_mk_common_header(scp, skb, msgflag, hlen); |
326 | 326 | ||
327 | *ptr++ = cpu_to_le16(acknum); | 327 | *ptr++ = cpu_to_le16(acknum); |
328 | *ptr++ = cpu_to_le16(ackcrs); | 328 | *ptr++ = cpu_to_le16(ackcrs); |