diff options
author | Frank Haverkamp <haver@linux.vnet.ibm.com> | 2013-12-09 07:30:44 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-18 19:51:15 -0500 |
commit | 76f5adbcb371b01ae0ad42e55377d0579706fb20 (patch) | |
tree | 283ce182c492395d2865934a56fb52e653b4c395 /drivers/misc/genwqe | |
parent | b2a65138b51bd7b36a47da3691aee039cd50010c (diff) |
GenWQE Enable driver
Enable possiblity to configure and build this driver.
Signed-off-by: Frank Haverkamp <haver@linux.vnet.ibm.com>
Co-authors: Joerg-Stephan Vogt <jsvogt@de.ibm.com>,
Michael Jung <MIJUNG@de.ibm.com>,
Michael Ruettger <michael@ibmra.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/genwqe')
-rw-r--r-- | drivers/misc/genwqe/Kconfig | 13 | ||||
-rw-r--r-- | drivers/misc/genwqe/Makefile | 7 |
2 files changed, 20 insertions, 0 deletions
diff --git a/drivers/misc/genwqe/Kconfig b/drivers/misc/genwqe/Kconfig new file mode 100644 index 000000000000..6069d8cd79d7 --- /dev/null +++ b/drivers/misc/genwqe/Kconfig | |||
@@ -0,0 +1,13 @@ | |||
1 | # | ||
2 | # IBM Accelerator Family 'GenWQE' | ||
3 | # | ||
4 | |||
5 | menuconfig GENWQE | ||
6 | tristate "GenWQE PCIe Accelerator" | ||
7 | depends on PCI && 64BIT | ||
8 | select CRC_ITU_T | ||
9 | default n | ||
10 | help | ||
11 | Enables PCIe card driver for IBM GenWQE accelerators. | ||
12 | The user-space interface is described in | ||
13 | include/linux/genwqe/genwqe_card.h. | ||
diff --git a/drivers/misc/genwqe/Makefile b/drivers/misc/genwqe/Makefile new file mode 100644 index 000000000000..98a2b4f0b18b --- /dev/null +++ b/drivers/misc/genwqe/Makefile | |||
@@ -0,0 +1,7 @@ | |||
1 | # | ||
2 | # Makefile for GenWQE driver | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_GENWQE) := genwqe_card.o | ||
6 | genwqe_card-objs := card_base.o card_dev.o card_ddcb.o card_sysfs.o \ | ||
7 | card_debugfs.o card_utils.o | ||