1 From 596735ad86a3dae987e19c21ef22259179966fc6 Mon Sep 17 00:00:00 2001
2 From: Cristian Stoica <cristian.stoica@nxp.com>
3 Date: Mon, 8 Feb 2016 15:15:02 +0200
4 Subject: [PATCH 47/48] cryptodev: treat all build warnings as errors
6 This patch has the purpose of maintaining a higher level of code quality.
8 Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
10 crypto/engine/Makefile | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
13 diff --git a/crypto/engine/Makefile b/crypto/engine/Makefile
14 index 426388e..010f21d 100644
15 --- a/crypto/engine/Makefile
16 +++ b/crypto/engine/Makefile
17 @@ -10,7 +10,7 @@ CFLAG=-g
21 -CFLAGS= $(INCLUDES) $(CFLAG)
22 +CFLAGS= -Wall -Werror $(INCLUDES) $(CFLAG)