From patchwork Fri Mar 2 15:53:41 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 7064 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 35C7123E4A for ; Fri, 2 Mar 2012 15:54:20 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id E7EBEA1841A for ; Fri, 2 Mar 2012 15:54:19 +0000 (UTC) Received: by iage36 with SMTP id e36so3302685iag.11 for ; Fri, 02 Mar 2012 07:54:19 -0800 (PST) Received: from mr.google.com ([10.43.52.74]) by 10.43.52.74 with SMTP id vl10mr7092687icb.55.1330703659462 (num_hops = 1); Fri, 02 Mar 2012 07:54:19 -0800 (PST) Received: by 10.43.52.74 with SMTP id vl10mr5818697icb.55.1330703659419; Fri, 02 Mar 2012 07:54:19 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.53.18 with SMTP id k18csp12807ibg; Fri, 2 Mar 2012 07:54:18 -0800 (PST) Received: by 10.14.28.75 with SMTP id f51mr4680760eea.118.1330703657674; Fri, 02 Mar 2012 07:54:17 -0800 (PST) Received: from eu1sys200aog111.obsmtp.com (eu1sys200aog111.obsmtp.com. [207.126.144.131]) by mx.google.com with SMTP id s55si5631736eeh.40.2012.03.02.07.54.05 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 02 Mar 2012 07:54:17 -0800 (PST) Received-SPF: neutral (google.com: 207.126.144.131 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) client-ip=207.126.144.131; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.131 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) smtp.mail=linus.walleij@stericsson.com Received: from beta.dmz-us.st.com ([167.4.1.35]) (using TLSv1) by eu1sys200aob111.postini.com ([207.126.147.11]) with SMTP ID DSNKT1DtG0Mr0e6wXGzYVZxuiXDU+Sr87nJ5@postini.com; Fri, 02 Mar 2012 15:54:16 UTC Received: from zeta.dmz-us.st.com (ns4.st.com [167.4.16.71]) by beta.dmz-us.st.com (STMicroelectronics) with ESMTP id C2C25A8; Fri, 2 Mar 2012 15:53:33 +0000 (GMT) Received: from relay1.stm.gmessaging.net (unknown [10.230.100.17]) by zeta.dmz-us.st.com (STMicroelectronics) with ESMTP id 96A1950; Fri, 2 Mar 2012 14:24:29 +0000 (GMT) Received: from exdcvycastm004.EQ1STM.local (alteon-source-exch [10.230.100.61]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "exdcvycastm004", Issuer "exdcvycastm004" (not verified)) by relay1.stm.gmessaging.net (Postfix) with ESMTPS id 2BBAC24C2C0; Fri, 2 Mar 2012 16:53:37 +0100 (CET) Received: from steludxu4075.lud.stericsson.com (10.230.100.153) by smtp.stericsson.com (10.230.100.2) with Microsoft SMTP Server (TLS) id 8.3.83.0; Fri, 2 Mar 2012 16:53:44 +0100 From: Linus Walleij To: , Cc: Stephen Warren , Grant Likely , Barry Song <21cnbao@gmail.com>, Shawn Guo , Thomas Abraham , Dong Aisheng , Rajendra Nayak , Haojian Zhuang , Linus Walleij Subject: [PATCH] pinctrl: fix the pin descriptor kerneldoc Date: Fri, 2 Mar 2012 16:53:41 +0100 Message-ID: <1330703621-4044-1-git-send-email-linus.walleij@stericsson.com> X-Mailer: git-send-email 1.7.8 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQl0IUCM9VQRqYPPn2pkHAc5gNNCY95QfdaDG+bkB/CRUmZ05lY7YtKC0vsw5pZqhZh/I3Bh From: Linus Walleij The introduction of the owner field on the pin descriptor was not properly documented so fix this up. Signed-off-by: Linus Walleij --- drivers/pinctrl/core.h | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/pinctrl/core.h b/drivers/pinctrl/core.h index 97f8124..e1dfdb3 100644 --- a/drivers/pinctrl/core.h +++ b/drivers/pinctrl/core.h @@ -76,9 +76,7 @@ struct pinctrl { * datasheet or such * @dynamic_name: if the name of this pin was dynamically allocated * @lock: a lock to protect the descriptor structure - * @mux_requested: whether the pin is already requested by pinmux or not - * @mux_function: a named muxing function for the pin that will be passed to - * subdrivers and shown in debugfs etc + * @owner: the device holding this pin or NULL of no device has claimed it */ struct pin_desc { struct pinctrl_dev *pctldev;