From patchwork Thu Oct 30 09:52:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hanjun Guo X-Patchwork-Id: 5194801 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.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CCA109F39B for ; Thu, 30 Oct 2014 09:53:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 136D3201ED for ; Thu, 30 Oct 2014 09:53:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4D69620172 for ; Thu, 30 Oct 2014 09:53:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757246AbaJ3Jx1 (ORCPT ); Thu, 30 Oct 2014 05:53:27 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:35288 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752590AbaJ3JxZ (ORCPT ); Thu, 30 Oct 2014 05:53:25 -0400 Received: by mail-pa0-f45.google.com with SMTP id lf10so5147895pab.4 for ; Thu, 30 Oct 2014 02:53:25 -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; bh=6PbEUueHEvFq1cmAXODo7UV8SnWKhGYEoLCCL7SHwKM=; b=cmvXgOKMGSFF06mxAyredfjSNKUR+p/4fs1TW2AHkp5FGQNVNN89TkS6NU66aW5Lsl 6oImMJwZDbe9CTa+c774IlMqD0hlLMbZN6L76bbIO8F9ORUGmh79tLarjDUiHqV1UBBY 1eCs5wGaYLgVmCe0E5ARpMDjgPHk7t80kQJbQTClqW0NNzeTp7LZsk6bBbA0a+VABzTk /g6Eum54ElsaDuUkGVAyDpgFYzvDDFHEGrR2FNEWFPyEOJaoUaH6kfC/nlLesk0M+2Gn ZS59wu6ZW3cXesS3thwmOWBDgnRsGCkwrkbDHQzif+NcWZ5Ld9vtnc/qwVpOUdFeAGen EKhA== X-Gm-Message-State: ALoCoQljnuHEE3ei8kFyq4P2C9ruCW652qXZgNaxYsl0KYbmoH9IpcmjvpiM+9HDJkHQ346c6XxZ X-Received: by 10.66.129.142 with SMTP id nw14mr16005212pab.119.1414662805433; Thu, 30 Oct 2014 02:53:25 -0700 (PDT) Received: from localhost ([111.140.36.65]) by mx.google.com with ESMTPSA id nk11sm6633728pdb.40.2014.10.30.02.53.24 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 30 Oct 2014 02:53:24 -0700 (PDT) From: Hanjun Guo To: "Rafael J. Wysocki" Cc: Jiang Liu , Lorenzo Pieralisi , Mark Rutland , Tony Luck , "H. Peter Anvin" , Grant Likely , Sudeep Holla , Lv Zheng , linux-acpi@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linaro-acpi@lists.linaro.org, Hanjun Guo Subject: [PATCH 1/3] ACPI / processor: Update the comments in processor.h Date: Thu, 30 Oct 2014 17:52:58 +0800 Message-Id: <1414662780-2147-1-git-send-email-hanjun.guo@linaro.org> X-Mailer: git-send-email 1.7.9.5 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.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 In commit 46ba51e (ACPI / processor: Introduce ARCH_MIGHT_HAVE_ACPI_PDC), acpi_processor_set_pdc() was moved to processor_pdc.c, so update the comments accordingly. Signed-off-by: Hanjun Guo --- include/acpi/processor.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/acpi/processor.h b/include/acpi/processor.h index 9b9b6f2..cbb6cd3 100644 --- a/include/acpi/processor.h +++ b/include/acpi/processor.h @@ -313,11 +313,13 @@ static inline int acpi_processor_get_bios_limit(int cpu, unsigned int *limit) #endif /* CONFIG_CPU_FREQ */ /* in processor_core.c */ -void acpi_processor_set_pdc(acpi_handle handle); int acpi_get_apicid(acpi_handle, int type, u32 acpi_id); int acpi_map_cpuid(int apic_id, u32 acpi_id); int acpi_get_cpuid(acpi_handle, int type, u32 acpi_id); +/* in processor_pdc.c */ +void acpi_processor_set_pdc(acpi_handle handle); + /* in processor_throttling.c */ int acpi_processor_tstate_has_changed(struct acpi_processor *pr); int acpi_processor_get_throttling_info(struct acpi_processor *pr);