commit | 6618c051b52ec108f5b5a2deacd70fbaed4b4542 | [log] [tgz] |
---|---|---|
author | Shivani Bhardwaj <shivanib134@gmail.com> | Thu Oct 15 15:14:41 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Oct 16 23:02:55 2015 -0700 |
tree | 7b23db30ea99dc57cbe5515858d2d80bb223da8b | |
parent | 065779434e59efa6252b3ed27df77f2151d47c54 [diff] |
Staging: rdma: mad: Remove explicit cast Explicit type casting is not required as compiler can type cast variables implicitly. Therefore, it should be removed. Semantic patch used: @@ type T; T e; identifier x; @@ * T x = (T)e; Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>