commit | b7856753856b4e6a20c1c91c6db03852e90de273 | [log] [tgz] |
---|---|---|
author | Shraddha Barke <shraddha.6596@gmail.com> | Tue Aug 04 23:02:34 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Wed Aug 05 12:18:00 2015 -0700 |
tree | c3937b643b024b9352354b8ac562de3fea322e9e | |
parent | 45b30514a34fa7fcb7a84be799ca5fc53d33a4d7 [diff] |
Staging: lustre: osc: Drop unnecessary cast on void * This patch does away with the cast on void * as it is unnecessary. Semantic patch used is as follows: @r@ expression x; void* e; type T; identifier f; @@ ( *((T *)e) | ((T *)x)[...] | ((T *)x)->f | - (T *) e ) Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>