linux-stable/drivers/staging/skein
Bhumika Goyal 1af172fa41 Staging: skein: skein_api: Remove useless type conversion
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>
2016-10-16 10:25:07 +02:00
..
Kconfig
Makefile
skein_api.c Staging: skein: skein_api: Remove useless type conversion 2016-10-16 10:25:07 +02:00
skein_api.h
skein_base.c staging: skein: cleanup: align code to parentheses 2016-05-03 14:07:11 -07:00
skein_base.h staging: skein: cleanup: removed unnecessary cast spaces 2016-05-03 14:07:11 -07:00
skein_block.c staging: skein: cleanup: removed unnecessary cast spaces 2016-05-03 14:07:11 -07:00
skein_block.h
skein_generic.c staging: skein: cleanup: align parentheses 2016-04-29 17:51:10 -07:00
skein_iv.h
threefish_api.c
threefish_api.h staging: skein: cleanup: add operator white space 2016-04-29 17:51:06 -07:00
threefish_block.c staging: skein: threefish_block: Use ror64 2016-03-28 07:30:36 -07:00
TODO