commit | 3733d3f997b468481e609d47fa35badd47d0bf06 | [log] [tgz] |
---|---|---|
author | Joe Perches <joe@perches.com> | Fri Mar 18 13:32:12 2016 -0700 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 28 07:30:36 2016 -0700 |
tree | df5c0ae035f429d68f9e579cb2389a11f5acd1fa | |
parent | 57d8dfed8586427880516536cf0abc3aa19cea78 [diff] |
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>