From patchwork Thu Nov 19 03:43:56 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Viresh Kumar X-Patchwork-Id: 56961 Delivered-To: patch@linaro.org Received: by 10.112.155.196 with SMTP id vy4csp2937131lbb; Wed, 18 Nov 2015 19:44:17 -0800 (PST) X-Received: by 10.68.69.38 with SMTP id b6mr7246261pbu.46.1447904656988; Wed, 18 Nov 2015 19:44:16 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n10si8680311pap.139.2015.11.18.19.44.16; Wed, 18 Nov 2015 19:44:16 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-pm-owner@vger.kernel.org; dkim=neutral (body hash did not verify) header.i=@linaro-org.20150623.gappssmtp.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756838AbbKSDoP (ORCPT + 11 others); Wed, 18 Nov 2015 22:44:15 -0500 Received: from mail-pa0-f42.google.com ([209.85.220.42]:32912 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756674AbbKSDoO (ORCPT ); Wed, 18 Nov 2015 22:44:14 -0500 Received: by pabfh17 with SMTP id fh17so68452771pab.0 for ; Wed, 18 Nov 2015 19:44:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=PCJvkmUT4xR761EIST+S2qEc2sFXlPiCNWkHOJT0yD0=; b=r+hCCXSCc2J4olGGtJqtK3Y20ffdLuyXycBvGYTCpSutFWsU7vhvW2YWzOdxEC2Jyh SYb4sNs6XiYZV/qnei0PnZZD6X8DcuyfHSRorriIdzBOqBitMca0p5aqR/MoCOOo3RZw JGfxelp9Z+/yUMS9ESNNpsrZUYT/uULrmY4+MrJ2iGEolVn3WPmt1CAYC/eENQ0ciU0S DW42fb7FSNBi+RMwmpiWCwcwxPAGyizorjyatHVvKGMRp7Eod9tNzS5wLN4zebIVvShN PXyRoqj8OwR8EA7trs3LNg77I+lscHG59U1QaTip7LVfn5PvvA2UhKO9pU1xngCP5qeQ e9+w== 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=PCJvkmUT4xR761EIST+S2qEc2sFXlPiCNWkHOJT0yD0=; b=krvpB6GXLLSlTLvQVCpnZkT/ubhglzHvNh7FH8zivP1J/thGHRDzgr1pwBSU/Td2uH fPG2Ex8ckHZl2jEctceqjj21cDV6QFsg+Bc9uBLrKCD4I2DRc4PKAtmFueiyhD9rLZjW jCiihYTaZHcn3SBLhXnp/Wh7mD/ktYrrYT9rvHWQiVgNMa6hFB6pYUxl0Umuf29CJtD6 vmPx8Z4+NvoJHucUlLeyWwmCDxM/l8RWvMvhoAWkwvv/evJnC581FMDy6AEBcau8EeIz gLctgzNb7vmkNBsVFXd5UDyi1o3aGk2c4jBupXkn9Hqcb/nFBRthKXK7L9W14bXDniCB BSeg== X-Gm-Message-State: ALoCoQmnEYgMtPZymJ5jePYWRiI42CtKSP+Skt0QUm6M3+FyZeI5BXcJ6EshF9boSzUf90fm7f6D X-Received: by 10.68.162.193 with SMTP id yc1mr1932325pbb.148.1447904654141; Wed, 18 Nov 2015 19:44:14 -0800 (PST) Received: from localhost ([122.167.29.19]) by smtp.gmail.com with ESMTPSA id py5sm6969075pbc.8.2015.11.18.19.44.12 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 18 Nov 2015 19:44:13 -0800 (PST) From: Viresh Kumar To: Rafael Wysocki , Stephen Boyd , nm@ti.com Cc: linaro-kernel@lists.linaro.org, linux-pm@vger.kernel.org, Viresh Kumar , Pavel Machek , Greg Kroah-Hartman , Len Brown , linux-kernel@vger.kernel.org (open list) Subject: [PATCH V2 1/3] PM / OPP: Add missing doc comments Date: Thu, 19 Nov 2015 09:13:56 +0530 Message-Id: X-Mailer: git-send-email 2.6.2.198.g614a2ac 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 Few doc-style comments were missing, add them. Rearrange another one to match the sequence within the structure. Signed-off-by: Viresh Kumar Acked-by: Pavel Machek Reviewed-by: Stephen Boyd --- drivers/base/power/opp/opp.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) -- 2.6.2.198.g614a2ac -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/base/power/opp/opp.h b/drivers/base/power/opp/opp.h index a6bd8d2c2b47..b8880c7f8be1 100644 --- a/drivers/base/power/opp/opp.h +++ b/drivers/base/power/opp/opp.h @@ -51,8 +51,8 @@ extern struct mutex dev_opp_list_lock; * are protected by the dev_opp_list_lock for integrity. * IMPORTANT: the opp nodes should be maintained in increasing * order. - * @dynamic: not-created from static DT entries. * @available: true/false - marks if this OPP as available or not + * @dynamic: not-created from static DT entries. * @turbo: true if turbo (boost) OPP * @suspend: true if suspend OPP * @rate: Frequency in hertz @@ -126,7 +126,9 @@ struct device_list_opp { * @dev_list: list of devices that share these OPPs * @opp_list: list of opps * @np: struct device_node pointer for opp's DT node. + * @clock_latency_ns_max: Max clock latency in nanoseconds. * @shared_opp: OPP is shared between multiple devices. + * @suspend_opp: Pointer to OPP to be used during device suspend. * @dentry: debugfs dentry pointer of the real device directory (not links). * @dentry_name: Name of the real dentry. *