Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754847AbdGJRx0 (ORCPT ); Mon, 10 Jul 2017 13:53:26 -0400 Received: from mail-oi0-f54.google.com ([209.85.218.54]:34779 "EHLO mail-oi0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754830AbdGJRxY (ORCPT ); Mon, 10 Jul 2017 13:53:24 -0400 Reply-To: minyard@acm.org To: Linus Torvalds Cc: linux-kernel , "openipmi-developer@lists.sourceforge.net" From: Corey Minyard Subject: [GIT PULL] Pull request for 4.13 for IPMI v2 Message-ID: <11667b65-ae48-c8eb-d4b6-d0800aa9e40a@gmail.com> Date: Mon, 10 Jul 2017 12:53:22 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-GB Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2251 Lines: 60 This time signed with the right key... The following changes since commit 13e0988140374123bead1dd27c287354cb95108e: docs: complete bumping minimal GNU Make version to 3.81 (2017-05-06 18:49:09 -0700) are available in the git repository at: https://github.com/cminyard/linux-ipmi.git tags/for-linus-4.13-v2 for you to fetch changes up to 4495ec6d770e1bca7a04e93ac453ab6720c56c5d: ipmi:ssif: Add missing unlock in error branch (2017-06-30 07:18:08 -0500) ---------------------------------------------------------------- Some small fixes for IPMI, and one medium sized changed. The medium sized change is adding a platform device for IPMI entries in the DMI table. Otherwise there is no auto loading for IPMI devices if they are only in the DMI table. ---------------------------------------------------------------- Arvind Yadav (1): char: ipmi: constify bmc_dev_attr_group and bmc_device_type Colin Ian King (1): ipmi_ssif: remove redundant null check on array client->adapter->name Corey Minyard (6): ipmi: Use the proper default value for register size in ACPI ipmi:ssif: Use i2c_adapter_id instead of adapter->nr ipmi: Create a platform device for a DMI-specified IPMI interface ipmi: Convert DMI handling over to a platform device ipmi:ssif: Check dev before setting drvdata ipmi:ssif: Add missing unlock in error branch Dan Carpenter (1): ipmi_ssif: unlock on allocation failure Tony Camuso (1): ipmi: use rcu lock around call to intf->handlers->sender() Valentin Vidic (1): ipmi/watchdog: fix watchdog timeout set on reboot drivers/char/ipmi/Kconfig | 4 + drivers/char/ipmi/Makefile | 1 + drivers/char/ipmi/ipmi_dmi.c | 273 ++++++++++++++++++++++++++++++++++++ drivers/char/ipmi/ipmi_dmi.h | 12 ++ drivers/char/ipmi/ipmi_msghandler.c | 9 +- drivers/char/ipmi/ipmi_si_intf.c | 265 ++++++++++++++++------------------ drivers/char/ipmi/ipmi_ssif.c | 176 ++++++++++++++--------- drivers/char/ipmi/ipmi_watchdog.c | 7 +- 8 files changed, 533 insertions(+), 214 deletions(-) create mode 100644 drivers/char/ipmi/ipmi_dmi.c create mode 100644 drivers/char/ipmi/ipmi_dmi.h