From patchwork Wed Aug 5 13:40:31 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ashwin Chaugule X-Patchwork-Id: 6949541 X-Patchwork-Delegate: rjw@sisk.pl Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9FE329F39D for ; Wed, 5 Aug 2015 13:41:26 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 49D9F203B0 for ; Wed, 5 Aug 2015 13:41:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F37092041F for ; Wed, 5 Aug 2015 13:41:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752269AbbHENlI (ORCPT ); Wed, 5 Aug 2015 09:41:08 -0400 Received: from mail-yk0-f170.google.com ([209.85.160.170]:32855 "EHLO mail-yk0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753283AbbHENlF (ORCPT ); Wed, 5 Aug 2015 09:41:05 -0400 Received: by ykoo205 with SMTP id o205so35351017yko.0 for ; Wed, 05 Aug 2015 06:41:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=BpFqi6S2EVTEPq6N1ULOZ8NRuGLkILsejGHuFNmXgg4=; b=hRqvjYvuHNgYRES3Kh1qgYG2/KU7lKWTfeYsIx2s4tEWvUaOSXFm7GVEWGFLpzk8zT OPn4dfwPpvlMuhWbdvmn1TksGDOC8Qw1sqh7igKK6iZFfkY9HqHoE/BMH+7gBgRO4QTI 32oeCqR6hjPzh5FxTn8DYQ3iQsP5B1plxTSbXqTjnnBBaUr7n5v96rnVfs9GEORoI44/ x1ToIcZZe4PZa30Mn1hyx3L8XGJSU9oqwLmUy1Dpeo8GftUEdW4aVWWewXgqU/zyT47N YfjUMRZC0TliAvSJ5O4q18eiQWlBe8vHusdcsva849wHtPtW9GElCEbcZL/qUnwNa+wT 57/A== X-Gm-Message-State: ALoCoQnxco78/3xI9N7uuoK6AfgD64e6Ued1Ieo8ZZ+N/3Xl7HNpLTtNwqME9eH7328+0Xd/Ywqw X-Received: by 10.13.252.6 with SMTP id m6mr9462499ywf.83.1438782064664; Wed, 05 Aug 2015 06:41:04 -0700 (PDT) Received: from esagroth.lan ([98.122.160.202]) by smtp.gmail.com with ESMTPSA id g187sm2768031ywf.35.2015.08.05.06.41.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Aug 2015 06:41:03 -0700 (PDT) From: Ashwin Chaugule To: rjw@rjwysocki.net, jaswinder.singh@linaro.org Cc: sudeep.holla@arm.com, linux-pm@vger.kernel.org, linux-acpi@vger.kernel.org, linaro-acpi@lists.linaro.org, patches@linaro.org, viresh.kumar@linaro.org, rwells@codeaurora.org, Ashwin Chaugule Subject: [PATCH v8 8/9] PCC: Disable compilation by default Date: Wed, 5 Aug 2015 09:40:31 -0400 Message-Id: X-Mailer: git-send-email 1.9.1 In-Reply-To: References: In-Reply-To: References: Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP PCC is made selectable only by clients which use it. e.g. CPPC Default it to disabled so that it is not included accidentally on platforms which dont use it. Signed-off-by: Ashwin Chaugule Reviewed-by: Al Stone --- drivers/mailbox/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig index e269f08..bbec500 100644 --- a/drivers/mailbox/Kconfig +++ b/drivers/mailbox/Kconfig @@ -46,6 +46,7 @@ config OMAP_MBOX_KFIFO_SIZE config PCC bool "Platform Communication Channel Driver" depends on ACPI + default n help ACPI 5.0+ spec defines a generic mode of communication between the OS and a platform such as the BMC. This medium