commit | 3cf8e32d6d337e0c293cd1b192a970639291703e | [log] [tgz] |
---|---|---|
author | Shraddha Barke <shraddha.6596@gmail.com> | Fri Sep 04 12:08:45 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Sep 12 18:24:48 2015 -0700 |
tree | 900a8b89690f5cf21fc1e1c2115b0586ef21a753 | |
parent | 91b4e64bfe5b2b2afe66ba5ec622c003d483f9e3 [diff] |
Staging: lustre: mdc: Remove useless cast on void pointer void pointers do not need to be cast to other pointer types. The semantic patch used to find this: @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>