We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01dbc71 commit 78a0815Copy full SHA for 78a0815
arch/x86/crypto/crc32c-intel_glue.c
@@ -58,16 +58,11 @@
58
asmlinkage unsigned int crc_pcl(const u8 *buffer, int len,
59
unsigned int crc_init);
60
static int crc32c_pcl_breakeven = CRC32C_PCL_BREAKEVEN_EAGERFPU;
61
-#if defined(X86_FEATURE_EAGER_FPU)
62
#define set_pcl_breakeven_point() \
63
do { \
64
if (!use_eager_fpu()) \
65
crc32c_pcl_breakeven = CRC32C_PCL_BREAKEVEN_NOEAGERFPU; \
66
} while (0)
67
-#else
68
-#define set_pcl_breakeven_point() \
69
- (crc32c_pcl_breakeven = CRC32C_PCL_BREAKEVEN_NOEAGERFPU)
70
-#endif
71
#endif /* CONFIG_X86_64 */
72
73
static u32 crc32c_intel_le_hw_byte(u32 crc, unsigned char const *data, size_t length)
0 commit comments