aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/crypto/poly1305_glue.c
diff options
context:
space:
mode:
authorGravatar Borislav Petkov <bp@suse.de> 2016-03-29 17:42:00 +0200
committerGravatar Ingo Molnar <mingo@kernel.org> 2016-03-31 13:35:09 +0200
commit054efb6467f84490bdf92afab6d9dbd5102e620a (patch)
tree0cd41e8f6f42f8eb7e3061998192fdc8e19cde39 /arch/x86/crypto/poly1305_glue.c
parentx86/cpufeature: Remove cpu_has_clflush (diff)
downloadlinux-054efb6467f84490bdf92afab6d9dbd5102e620a.tar.gz
linux-054efb6467f84490bdf92afab6d9dbd5102e620a.tar.bz2
linux-054efb6467f84490bdf92afab6d9dbd5102e620a.zip
x86/cpufeature: Remove cpu_has_xmm2
Signed-off-by: Borislav Petkov <bp@suse.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-crypto@vger.kernel.org Link: http://lkml.kernel.org/r/1459266123-21878-8-git-send-email-bp@alien8.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/crypto/poly1305_glue.c')
-rw-r--r--arch/x86/crypto/poly1305_glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/poly1305_glue.c b/arch/x86/crypto/poly1305_glue.c
index 4264a3d59589..b283868acdf8 100644
--- a/arch/x86/crypto/poly1305_glue.c
+++ b/arch/x86/crypto/poly1305_glue.c
@@ -179,7 +179,7 @@ static struct shash_alg alg = {
static int __init poly1305_simd_mod_init(void)
{
- if (!cpu_has_xmm2)
+ if (!boot_cpu_has(X86_FEATURE_XMM2))
return -ENODEV;
#ifdef CONFIG_AS_AVX2