staging: skein: threefish_block: Use ror64
authorJoe Perches <joe@perches.com>
Fri, 18 Mar 2016 20:32:12 +0000 (13:32 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Mar 2016 14:30:36 +0000 (07:30 -0700)
commit3733d3f997b468481e609d47fa35badd47d0bf06
treedf5c0ae035f429d68f9e579cb2389a11f5acd1fa
parent57d8dfed8586427880516536cf0abc3aa19cea78
staging: skein: threefish_block: Use ror64

Use the inline instead of direct code to improve readability
and shorten the code a little.

Done with perl:

$ perl -p -i -e 's/\((\w+) \>\> (\d+)\) \| \(\1 \<\< \(64 \- \2\)\)/ror64(\1, \2)/g' drivers/staging/skein/threefish_block.c

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/skein/threefish_block.c