From 96ee611d07bd5c7e23b3cbb2ee53a283fe21cff0 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sat, 26 Mar 2011 10:00:47 +0100 Subject: [PATCH] Use crypto/cryptodev.h while compiling sources. --- Makefile | 1 + cryptodev_cipher.c | 2 +- cryptodev_int.h | 2 +- cryptodev_main.c | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5fd3c53..da7ed74 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +KBUILD_CFLAGS += -I$(src) KERNEL_DIR = /lib/modules/$(shell uname -r)/build VERSION = 0.9 diff --git a/cryptodev_cipher.c b/cryptodev_cipher.c index 0bce1b6..d71be78 100644 --- a/cryptodev_cipher.c +++ b/cryptodev_cipher.c @@ -32,7 +32,7 @@ #include #include #include -#include "cryptodev.h" +#include #include "cryptodev_int.h" diff --git a/cryptodev_int.h b/cryptodev_int.h index d20c01e..4690398 100644 --- a/cryptodev_int.h +++ b/cryptodev_int.h @@ -11,7 +11,7 @@ #include #include #include -#include "cryptodev.h" +#include #define PFX "cryptodev: " #define dprintk(level, severity, format, a...) \ diff --git a/cryptodev_main.c b/cryptodev_main.c index efd08c8..3a58f33 100644 --- a/cryptodev_main.c +++ b/cryptodev_main.c @@ -42,7 +42,7 @@ #include #include #include -#include "cryptodev.h" +#include #include #include "cryptodev_int.h" #include "version.h" -- 2.11.4.GIT