From 4b2cf35fa30647acb46dbaae82292e4c731ee01d Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Mon, 10 Oct 2011 22:20:09 +0200 Subject: [PATCH] padlock(4): Match ENTRY()s with END()s. --- sys/dev/crypto/padlock/rng_harvest_i386.S | 2 +- sys/dev/crypto/padlock/rng_harvest_x86_64.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/crypto/padlock/rng_harvest_i386.S b/sys/dev/crypto/padlock/rng_harvest_i386.S index 815f318229..2c6c6aedd1 100644 --- a/sys/dev/crypto/padlock/rng_harvest_i386.S +++ b/sys/dev/crypto/padlock/rng_harvest_i386.S @@ -73,4 +73,4 @@ out: /* return the number of stored random bytes. */ movl %ebx, %eax ret - +END(padlock_rng) diff --git a/sys/dev/crypto/padlock/rng_harvest_x86_64.S b/sys/dev/crypto/padlock/rng_harvest_x86_64.S index 506a4a783b..806f935b31 100644 --- a/sys/dev/crypto/padlock/rng_harvest_x86_64.S +++ b/sys/dev/crypto/padlock/rng_harvest_x86_64.S @@ -72,4 +72,4 @@ out: /* return the number of stored random bytes. */ movl %ebx, %eax ret - +END(padlock_rng) -- 2.41.0