forked from MIrrors/gasket-driver
- Change from X86 only to X86 or ARM64 in Kconfig - refcount_read doesn't exist in 4.11, so use atomic_read instead. This is the same call that refcount_read in 4.12+ would make. Change-Id: I48c97dd8c14136dcccaa8378b3a931a7872e1289
24 lines
642 B
Plaintext
24 lines
642 B
Plaintext
menu "Gasket devices"
|
|
|
|
config STAGING_GASKET_FRAMEWORK
|
|
tristate "Gasket framework"
|
|
depends on PCI && (X86_64 || ARM64)
|
|
help
|
|
This framework supports Gasket-compatible devices, such as Apex.
|
|
It is required for any of the following module(s).
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
will be called "gasket".
|
|
|
|
config STAGING_APEX_DRIVER
|
|
tristate "Apex Driver"
|
|
depends on STAGING_GASKET_FRAMEWORK
|
|
help
|
|
This driver supports the Apex device. Say Y if you want to
|
|
include this driver in the kernel.
|
|
|
|
To compile this driver as a module, choose M here. The module
|
|
will be called "apex".
|
|
|
|
endmenu
|