[GIT PULL] IPMI bug fixes for 5.3
From: Corey Minyard
Date: Fri Jul 12 2019 - 07:52:10 EST
The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:
Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)
are available in the Git repository at:
https://github.com/cminyard/linux-ipmi.git tags/for-linus-5.3
for you to fetch changes up to ac499fba98c3c65078fd84fa0a62cd6f6d5837ed:
docs: ipmb: place it at driver-api and convert to ReST (2019-06-30 19:33:25 -0500)
----------------------------------------------------------------
Some small fixes for various things, nothing huge, mostly found
by automated tools.
Plus add a driver that allows Linux to act as an IPMB slave device,
so it can be a satellite MC in an IPMI network.
----------------------------------------------------------------
Arnd Bergmann (1):
ipmi: ipmb: don't allocate i2c_client on stack
Asmaa Mnebhi (1):
Add support for IPMB driver
Kefeng Wang (3):
ipmi_si: fix unexpected driver unregister warning
ipmi_si: use bool type for initialized variable
ipmi_ssif: fix unexpected driver unregister warning
Mauro Carvalho Chehab (1):
docs: ipmb: place it at driver-api and convert to ReST
Suzuki K Poulose (1):
drivers: ipmi: Drop device reference
YueHaibing (1):
ipmi: ipmb: Fix build error while CONFIG_I2C is set to m
kbuild test robot (1):
fix platform_no_drv_owner.cocci warnings
Documentation/driver-api/index.rst | 1 +
Documentation/driver-api/ipmb.rst | 105 ++++++++++
drivers/char/ipmi/Kconfig | 9 +
drivers/char/ipmi/Makefile | 1 +
drivers/char/ipmi/ipmb_dev_int.c | 364 +++++++++++++++++++++++++++++++++++
drivers/char/ipmi/ipmi_si_intf.c | 4 +-
drivers/char/ipmi/ipmi_si_platform.c | 7 +-
drivers/char/ipmi/ipmi_ssif.c | 5 +-
8 files changed, 492 insertions(+), 4 deletions(-)
create mode 100644 Documentation/driver-api/ipmb.rst
create mode 100644 drivers/char/ipmi/ipmb_dev_int.c