diff options
author | Tadeusz Struk <tadeusz.struk@intel.com> | 2014-06-05 16:44:39 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-06-20 09:26:19 -0400 |
commit | cea4001ae1f80270a30031c6de139313e4dda213 (patch) | |
tree | 732acf9a7d987e497edf784cf128b94209a1a3ab | |
parent | 7afa232e76ced910a191a3f6669d8f48bcb46b3e (diff) |
crypto: qat - Update to makefiles
Update to makefiles etc.
Don't update the firmware/Makefile yet since there is no FW binary in
the crypto repo yet. This will be added later.
v3 - removed change to ./firmware/Makefile
Reviewed-by: Bruce W. Allan <bruce.w.allan@intel.com>
Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | Documentation/ioctl/ioctl-number.txt | 1 | ||||
-rw-r--r-- | MAINTAINERS | 6 | ||||
-rw-r--r-- | drivers/crypto/Kconfig | 1 | ||||
-rw-r--r-- | drivers/crypto/Makefile | 1 |
4 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/ioctl/ioctl-number.txt b/Documentation/ioctl/ioctl-number.txt index d7e43fa88575..7e240a7c9ab1 100644 --- a/Documentation/ioctl/ioctl-number.txt +++ b/Documentation/ioctl/ioctl-number.txt | |||
@@ -197,6 +197,7 @@ Code Seq#(hex) Include File Comments | |||
197 | <mailto:gregkh@linuxfoundation.org> | 197 | <mailto:gregkh@linuxfoundation.org> |
198 | 'a' all linux/atm*.h, linux/sonet.h ATM on linux | 198 | 'a' all linux/atm*.h, linux/sonet.h ATM on linux |
199 | <http://lrcwww.epfl.ch/> | 199 | <http://lrcwww.epfl.ch/> |
200 | 'a' 00-0F drivers/crypto/qat/qat_common/adf_cfg_common.h conflict! qat driver | ||
200 | 'b' 00-FF conflict! bit3 vme host bridge | 201 | 'b' 00-FF conflict! bit3 vme host bridge |
201 | <mailto:natalia@nikhefk.nikhef.nl> | 202 | <mailto:natalia@nikhefk.nikhef.nl> |
202 | 'c' all linux/cm4000_cs.h conflict! | 203 | 'c' all linux/cm4000_cs.h conflict! |
diff --git a/MAINTAINERS b/MAINTAINERS index 134483f206e4..16d59e4030b7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -7212,6 +7212,12 @@ M: Robert Jarzmik <robert.jarzmik@free.fr> | |||
7212 | L: rtc-linux@googlegroups.com | 7212 | L: rtc-linux@googlegroups.com |
7213 | S: Maintained | 7213 | S: Maintained |
7214 | 7214 | ||
7215 | QAT DRIVER | ||
7216 | M: Tadeusz Struk <tadeusz.struk@intel.com> | ||
7217 | L: qat-linux@intel.com | ||
7218 | S: Supported | ||
7219 | F: drivers/crypto/qat/ | ||
7220 | |||
7215 | QIB DRIVER | 7221 | QIB DRIVER |
7216 | M: Mike Marciniszyn <infinipath@intel.com> | 7222 | M: Mike Marciniszyn <infinipath@intel.com> |
7217 | L: linux-rdma@vger.kernel.org | 7223 | L: linux-rdma@vger.kernel.org |
diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig index 30756bd1a8c4..107822f43fc3 100644 --- a/drivers/crypto/Kconfig +++ b/drivers/crypto/Kconfig | |||
@@ -418,4 +418,5 @@ config CRYPTO_DEV_MXS_DCP | |||
418 | To compile this driver as a module, choose M here: the module | 418 | To compile this driver as a module, choose M here: the module |
419 | will be called mxs-dcp. | 419 | will be called mxs-dcp. |
420 | 420 | ||
421 | source "drivers/crypto/qat/Kconfig" | ||
421 | endif # CRYPTO_HW | 422 | endif # CRYPTO_HW |
diff --git a/drivers/crypto/Makefile b/drivers/crypto/Makefile index 482f090d16d0..f996ed72569c 100644 --- a/drivers/crypto/Makefile +++ b/drivers/crypto/Makefile | |||
@@ -23,3 +23,4 @@ obj-$(CONFIG_CRYPTO_DEV_S5P) += s5p-sss.o | |||
23 | obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o | 23 | obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o |
24 | obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o | 24 | obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o |
25 | obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/ | 25 | obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/ |
26 | obj-$(CONFIG_CRYPTO_DEV_QAT) += qat/ | ||