aboutsummaryrefslogtreecommitdiffstats
path: root/lib/raid6/recov_ssse3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/raid6/recov_ssse3.c')
-rw-r--r--lib/raid6/recov_ssse3.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/raid6/recov_ssse3.c b/lib/raid6/recov_ssse3.c
index a9168328f03b..cda33e56a5e3 100644
--- a/lib/raid6/recov_ssse3.c
+++ b/lib/raid6/recov_ssse3.c
@@ -7,6 +7,8 @@
7 * of the License. 7 * of the License.
8 */ 8 */
9 9
10#ifdef CONFIG_AS_SSSE3
11
10#include <linux/raid/pq.h> 12#include <linux/raid/pq.h>
11#include "x86.h" 13#include "x86.h"
12 14
@@ -330,3 +332,7 @@ const struct raid6_recov_calls raid6_recov_ssse3 = {
330#endif 332#endif
331 .priority = 1, 333 .priority = 1,
332}; 334};
335
336#else
337#warning "your version of binutils lacks SSSE3 support"
338#endif