From patchwork Thu Mar 23 15:53:40 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 9641511 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 88CEC602CA for ; Thu, 23 Mar 2017 15:53:49 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 78A4027C14 for ; Thu, 23 Mar 2017 15:53:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6B7DD27FA8; Thu, 23 Mar 2017 15:53:49 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 0437227C14 for ; Thu, 23 Mar 2017 15:53:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964962AbdCWPxs (ORCPT ); Thu, 23 Mar 2017 11:53:48 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:59308 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964891AbdCWPxr (ORCPT ); Thu, 23 Mar 2017 11:53:47 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 4350B60954; Thu, 23 Mar 2017 15:53:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1490284426; bh=PGl1jiZ6iULj4FBpJRstwtGiaI/YDq+H5+EH7jjpVZo=; h=From:To:Cc:Subject:Date:From; b=WKrIqYabzQGWYbuUCQyA0UyqZDRPawwYgobJpZacHfZz2Rd9DYCZfHmEsJ8YU7iAf pquLjSuRIwDtRZEnSC6I1ekTnDm5DDlfKsY6z0VLdnquVduso8ogBuEZZvdVqbLD5x Ip/EFWGAzmgQ6wPQbQhdrLi77D7452PZJCUBKREg= Received: from drakthul.qualcomm.com (global_nat1_iad_fw.qualcomm.com [129.46.232.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: okaya@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id A7B266085D; Thu, 23 Mar 2017 15:53:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1490284425; bh=PGl1jiZ6iULj4FBpJRstwtGiaI/YDq+H5+EH7jjpVZo=; h=From:To:Cc:Subject:Date:From; b=g98IUyxdnDlqnL3qCmPPUq1S2wSE+gfbUObE+GCVDEfv1HYf3gBlJ3ckNluJeXiw2 hey/Ors5PK7c4W6b+AmfggKeMfxSOUnCD9vrcnE7ou1hcPyRmAPK3HegLMJXkujINk u+EKzAvpz5bI835Is7QIf/apGXbxIGGczCK0hXk0= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org A7B266085D Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=okaya@codeaurora.org From: Sinan Kaya To: linux-acpi@vger.kernel.org, timur@codeaurora.org, sulrich@codeaurora.org Cc: linux-arm-msm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Sinan Kaya , "Rafael J. Wysocki" , Len Brown , linux-kernel@vger.kernel.org Subject: [PATCH] ACPI / IPMI: allow ACPI_IPMI with IPMI_SSIF Date: Thu, 23 Mar 2017 11:53:40 -0400 Message-Id: <1490284420-26657-1-git-send-email-okaya@codeaurora.org> X-Mailer: git-send-email 1.9.1 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP ACPI_IPMI driver currently depends on IPMI System Interface (IPMI_SI) driver to be enabled. IPMI_SI driver only handles KCS, SMIC and BT BMC interfaces. IPMI_SSIF is an alternative BMC communication method. It allows BMC to be accessed over an I2C bus instead of a standard interface. Enabling ACPI_IPMI over IPMI_SSIF with this change. Signed-off-by: Sinan Kaya --- drivers/acpi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index 83e5f7e..8767062 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig @@ -256,7 +256,7 @@ config ACPI_PROCESSOR config ACPI_IPMI tristate "IPMI" - depends on IPMI_SI + depends on IPMI_SI||IPMI_SSIF default n help This driver enables the ACPI to access the BMC controller. And it