-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With the arrival of x86-machine-check support the nfit driver will add a (conditionally-compiled) source file. Prepare for this by moving all nfit source to drivers/acpi/nfit/. This is pure code movement, no functional changes. Signed-off-by: Dan Williams <dan.j.williams@intel.com>
- Loading branch information
Dan Williams
committed
Jul 24, 2016
1 parent
37b137f
commit bdf9701
Showing
8 changed files
with
33 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
config ACPI_NFIT | ||
tristate "ACPI NVDIMM Firmware Interface Table (NFIT)" | ||
depends on PHYS_ADDR_T_64BIT | ||
depends on BLK_DEV | ||
depends on ARCH_HAS_MMIO_FLUSH | ||
select LIBNVDIMM | ||
help | ||
Infrastructure to probe ACPI 6 compliant platforms for | ||
NVDIMMs (NFIT) and register a libnvdimm device tree. In | ||
addition to storage devices this also enables libnvdimm to pass | ||
ACPI._DSM messages for platform/dimm configuration. | ||
|
||
To compile this driver as a module, choose M here: | ||
the module will be called nfit. | ||
|
||
config ACPI_NFIT_DEBUG | ||
bool "NFIT DSM debug" | ||
depends on ACPI_NFIT | ||
depends on DYNAMIC_DEBUG | ||
default n | ||
help | ||
Enabling this option causes the nfit driver to dump the | ||
input and output buffers of _DSM operations on the ACPI0012 | ||
device and its children. This can be very verbose, so leave | ||
it disabled unless you are debugging a hardware / firmware | ||
issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
obj-$(CONFIG_ACPI_NFIT) := nfit.o | ||
nfit-y := core.o |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters