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: 6949591 X-Patchwork-Delegate: rjw@sisk.pl Return-Path: X-Original-To: patchwork-linux-acpi@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 114CE9F39D for ; Wed, 5 Aug 2015 13:41:32 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 464E7203E3 for ; Wed, 5 Aug 2015 13:41:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6E08320430 for ; Wed, 5 Aug 2015 13:41:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752792AbbHENlP (ORCPT ); Wed, 5 Aug 2015 09:41:15 -0400 Received: from mail-yk0-f169.google.com ([209.85.160.169]:32855 "EHLO mail-yk0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753321AbbHENlF (ORCPT ); Wed, 5 Aug 2015 09:41:05 -0400 Received: by ykoo205 with SMTP id o205so35351018yko.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=IUNEPN6CaMQK3Z3G0LkDxbj1Scr4iVIQK1g+//Td0/xADarDm5fiCYHUpMC1owEqe0 /+E7cTKX5lNNDn3Pf+EEr0weTnhJDL/hCFAQtjbtDs47PGNROknZC6YwKthzte0xg30v C2h1tQKAQYARZNQcsRb7OVgV5rAcmOtjzF9CTEY2Dejjjn73mBCj5c1dgeYeUoVqT/Pi Muixnsv5gFP1YUDKsBwgc++YLGXDSFYUkuNV1G4lXtQmxRZqt5PiD9VyHix3ykmHYP15 xC8VVd1BJQYL79biKILGSQV5FXkv2HDD4o94zBNDV0ACK7Do/cCJN3sm0QyacmcSLVGs f6MA== X-Gm-Message-State: ALoCoQmrkb+OnoWP5J8hfyJGNX+An86HLNS08ep8pnf8+FeO7PGCQ1mFX/yxjSg95NGYHBemp0IO 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-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@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