Messages in this thread |  | | From | Corey Minyard <> | Subject | Pull request for 4.9 for IPMI (version 2) | Date | Fri, 21 Oct 2016 13:12:56 -0500 |
| |
The following changes since commit c6169de7308b397824bd418c5b871b5a42de83d2:
Merge branch 'libnvdimm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm (2016-09-29 14:59:11 -0700)
are available in the git repository at:
git://git.code.sf.net/p/openipmi/linux-ipmi tags/for-linus-4.9-2
for you to fetch changes up to bd85f4b37ddf2da22ccf5b29d264b2459b6722df:
ipmi: fix crash on reading version from proc after unregisted bmc (2016-10-03 09:09:47 -0500)
---------------------------------------------------------------- A small bug fix and a new driver for acting as an IPMI device.
I was on vacation during the merge window (a long vacation) but this is a bug fix that should go in and a new driver that shouldn't hurt anything.
This has been in linux-next for a month or so. It shows about 3 weeks, but there was a rebase in there.
Learning from my mistakes, this was exactly the code that was in linux-next. Sorry about the issue. I'll rework the way I manage changes.
---------------------------------------------------------------- Alistair Popple (1): ipmi: add an Aspeed BT IPMI BMC driver
Cédric Le Goater (1): ipmi/bt-bmc: add a dependency on ARCH_ASPEED
Joel Stanley (1): ipmi: Fix ioremap error handling in bt-bmc
Wei Yongjun (1): ipmi/bt-bmc: remove redundant return value check of platform_get_resource()
Xie XiuQi (1): ipmi: fix crash on reading version from proc after unregisted bmc
.../bindings/ipmi/aspeed,ast2400-bt-bmc.txt | 23 + .../bindings/{ipmi.txt => ipmi/ipmi-smic.txt} | 0 drivers/Makefile | 2 +- drivers/char/ipmi/Kconfig | 8 + drivers/char/ipmi/Makefile | 1 + drivers/char/ipmi/bt-bmc.c | 505 +++++++++++++++++++++ drivers/char/ipmi/ipmi_msghandler.c | 7 +- include/uapi/linux/Kbuild | 1 + include/uapi/linux/bt-bmc.h | 18 + 9 files changed, 560 insertions(+), 5 deletions(-) create mode 100644 Documentation/devicetree/bindings/ipmi/aspeed,ast2400-bt-bmc.txt rename Documentation/devicetree/bindings/{ipmi.txt => ipmi/ipmi-smic.txt} (100%) create mode 100644 drivers/char/ipmi/bt-bmc.c create mode 100644 include/uapi/linux/bt-bmc.h
|  |