diff options
author | Corey Minyard <cminyard@mvista.com> | 2017-06-09 21:19:52 -0500 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2017-06-19 12:49:36 -0500 |
commit | 9f88145f1871456de67ae6a242ac2661187bd4ff (patch) | |
tree | 7062dcbf1cf77363031afbdfaabe9e07d8552770 /drivers/char/ipmi/Kconfig | |
parent | cdea46566bb21ce309725a024208322a409055cc (diff) | |
download | linux-9f88145f1871456de67ae6a242ac2661187bd4ff.tar.bz2 |
ipmi: Create a platform device for a DMI-specified IPMI interface
Create a platform device for each IPMI device in the DMI table,
a separate kind of device for SSIF types and for KCS, BT, and
SMIC types. This is so auto-loading IPMI devices will work
from just SMBIOS tables.
This also adds the ability to extract the slave address from
the SMBIOS tables, so that when the driver uses ACPI-specified
interfaces, it can still extract the slave address from SMBIOS.
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Cc: Andy Lutomirski <luto@kernel.org>
Diffstat (limited to 'drivers/char/ipmi/Kconfig')
-rw-r--r-- | drivers/char/ipmi/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/char/ipmi/Kconfig b/drivers/char/ipmi/Kconfig index 90f3edffb067..f6fa056a52fc 100644 --- a/drivers/char/ipmi/Kconfig +++ b/drivers/char/ipmi/Kconfig @@ -5,6 +5,7 @@ menuconfig IPMI_HANDLER tristate 'IPMI top-level message handler' depends on HAS_IOMEM + select IPMI_DMI_DECODE if DMI help This enables the central IPMI message handler, required for IPMI to work. @@ -16,6 +17,9 @@ menuconfig IPMI_HANDLER If unsure, say N. +config IPMI_DMI_DECODE + bool + if IPMI_HANDLER config IPMI_PANIC_EVENT |