def_bool $(as-instr,sha256msg1 %xmm0$(comma)%xmm1)
        help
          Supported by binutils >= 2.24 and LLVM integrated assembler
-config AS_TPAUSE
-       def_bool $(as-instr,tpause %ecx)
-       help
-         Supported by binutils >= 2.31.1 and LLVM integrated assembler >= V7
 
 config AS_GFNI
        def_bool $(as-instr,vgf2p8mulb %xmm0$(comma)%xmm1$(comma)%xmm2)
 
  */
 static inline void __tpause(u32 ecx, u32 edx, u32 eax)
 {
-       /* "tpause %ecx, %edx, %eax" */
-       #ifdef CONFIG_AS_TPAUSE
-       asm volatile("tpause %%ecx"
-                    :
-                    : "c"(ecx), "d"(edx), "a"(eax));
-       #else
+       /* "tpause %ecx" */
        asm volatile(".byte 0x66, 0x0f, 0xae, 0xf1"
-                    :
-                    : "c"(ecx), "d"(edx), "a"(eax));
-       #endif
+                    :: "c" (ecx), "d" (edx), "a" (eax));
 }
 
 #endif /* _ASM_X86_MWAIT_H */