forked from Minki/linux
1af172fa41
Some type conversions like casting a pointer to a pointer of same type, casting to the original type using addressof(&) operator etc. are not needed. Therefore, remove them. Done using coccinelle: @@ type t; t *p; t a; @@ ( - (t)(a) + a | - (t *)(p) + p | - (t *)(&a) + &a ) Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
skein_api.c | ||
skein_api.h | ||
skein_base.c | ||
skein_base.h | ||
skein_block.c | ||
skein_block.h | ||
skein_generic.c | ||
skein_iv.h | ||
threefish_api.c | ||
threefish_api.h | ||
threefish_block.c | ||
TODO |