Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Frank Haverkamp and committed by
Greg Kroah-Hartman
76f5adbc b2a65138

+22
+1
drivers/misc/Kconfig
··· 525 525 source "drivers/misc/mei/Kconfig" 526 526 source "drivers/misc/vmw_vmci/Kconfig" 527 527 source "drivers/misc/mic/Kconfig" 528 + source "drivers/misc/genwqe/Kconfig" 528 529 endmenu
+1
drivers/misc/Makefile
··· 53 53 obj-$(CONFIG_LATTICE_ECP3_CONFIG) += lattice-ecp3-config.o 54 54 obj-$(CONFIG_SRAM) += sram.o 55 55 obj-y += mic/ 56 + obj-$(CONFIG_GENWQE) += genwqe/
+13
drivers/misc/genwqe/Kconfig
··· 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.
+7
drivers/misc/genwqe/Makefile
··· 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