commit | e3192690a3c889767d1161b228374f4926d92af0 | [log] [tgz] |
---|---|---|
author | Joe Perches <joe@perches.com> | Sun Jun 03 17:41:40 2012 +0000 |
committer | David S. Miller <davem@davemloft.net> | Mon Jun 04 11:45:11 2012 -0400 |
tree | a2acbe06cc2efedb6002055f9d4ffd7f2ba6ec75 | |
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>