crypto: x86/poly1305: Remove custom function alignment
authorThomas Gleixner <tglx@linutronix.de>
Thu, 15 Sep 2022 11:11:00 +0000 (13:11 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 17 Oct 2022 14:41:03 +0000 (16:41 +0200)
SYM_FUNC_START*() and friends already imply alignment, remove custom
alignment hacks to make code consistent. This prepares for future
function call ABI changes.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20220915111145.073285765@infradead.org
arch/x86/crypto/poly1305-x86_64-cryptogams.pl

index 2077ce7..b9abcd7 100644 (file)
@@ -108,7 +108,6 @@ if (!$kernel) {
 sub declare_function() {
        my ($name, $align, $nargs) = @_;
        if($kernel) {
-               $code .= ".align $align\n";
                $code .= "SYM_FUNC_START($name)\n";
                $code .= ".L$name:\n";
        } else {