From patchwork Fri Aug 9 10:20:33 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Suzuki K Poulose X-Patchwork-Id: 170903 Delivered-To: patch@linaro.org Received: by 2002:a92:512:0:0:0:0:0 with SMTP id q18csp9795347ile; Fri, 9 Aug 2019 03:20:43 -0700 (PDT) X-Google-Smtp-Source: APXvYqyZpCnVTjICoOH5XNgv2O7zadJKPQV+Fgi6JJ/34RRIKpsJPKDD4RrMp64TeqEHdvdsdcNC X-Received: by 2002:a63:983:: with SMTP id 125mr15544471pgj.1.1565346043474; Fri, 09 Aug 2019 03:20:43 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1565346043; cv=none; d=google.com; s=arc-20160816; b=Gr3THPW5OCDTSQKsoUBOEsDkRMOqPyVzFRIvpkN8+UmjDxhp+qZnC9Bvhnsvor5VPg fPJ2yser21CM/62kbd0eho6fBiDaUL1rEuQCNBLs27KNk+mahyprDArcEms2ZYNh1tsb Q8Zn+bgo4RpHPQzMJtmS4Wfnrc6uTu88eAzIEzg99yVQYjqxNfY7dB9FDr7VO+1XzO0s MNbc3viSYHT9eAE5MVEdEYrYuYG47ag2oM/ltO7E2yYhPBDMrZHSth9ZlyweeaO/k/6E f/DR4JkJXCH6s5A/LEAIXFOdEH/Kk1kYedmsFkfCBjoBLpCEpsNsX/QpVm/LCYUWkEP7 nYMg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=w2CGkkuc3s9jzrv69XxHG1fMk/8B8cKI2ravN2h1+UQ=; b=PMfj3bGozpsq+Gibgij0ZhqpjgYjiD8YQCmzPVUV3fuRaBxn09RRsRfKcBLj9wcCHZ QIE8DS4YN/cCRKV9LUccCn7oNYPeRSpBl1iqy3XnXNbeh+Y5Ui43YO4nvkrRifuMH8q7 3eTE1fjrC8M3J8VBnokPhxTQilr4tEwK5kNnlVdDbnHECfYmjwTFS049pE94aLjZData WA0jd43l9FNAch114o73eiEPhA4rxqCI9pJxhrHQ68WVHIBQH3wSUKG5omF8xiePJXHB YwFjmq/4EkEUA6eoCf/IUPfeGBwma4LSMKnk4NLn1aSatVLoI7/jbZuJtCILbCNAW0Ul XBFw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id m22si54258843pgh.190.2019.08.09.03.20.43; Fri, 09 Aug 2019 03:20:43 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-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-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2406346AbfHIKUl (ORCPT + 28 others); Fri, 9 Aug 2019 06:20:41 -0400 Received: from foss.arm.com ([217.140.110.172]:44996 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726091AbfHIKUl (ORCPT ); Fri, 9 Aug 2019 06:20:41 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C5C341596; Fri, 9 Aug 2019 03:20:40 -0700 (PDT) Received: from dawn-kernel.cambridge.arm.com (unknown [10.1.197.116]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 1BB8B3F575; Fri, 9 Aug 2019 03:20:40 -0700 (PDT) From: Suzuki K Poulose To: linux-kernel@vger.kernel.org Cc: suzuki.poulose@arm.com, kbuild test robot , Greg Kroah-Hartman Subject: [PATCH] htmldocs: device.h: Fix warnings for mismatched parameter names in comments Date: Fri, 9 Aug 2019 11:20:33 +0100 Message-Id: <20190809102033.28463-1-suzuki.poulose@arm.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix the warnings for parameter named as "driver" instead of the actual "drv" in the comments as reported by the kbuild robot. Reported-by: kbuild test robot Cc: Greg Kroah-Hartman Signed-off-by: Suzuki K Poulose --- Greg, Sorry about these silly typos. Applies on linux-next. --- --- include/linux/device.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) -- 2.21.0 diff --git a/include/linux/device.h b/include/linux/device.h index 41d7ed091029..76496497e753 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -479,7 +479,7 @@ struct device *driver_find_device(struct device_driver *drv, /** * driver_find_device_by_name - device iterator for locating a particular device * of a specific name. - * @driver: the driver we're iterating + * @drv: the driver we're iterating * @name: name of the device to match */ static inline struct device *driver_find_device_by_name(struct device_driver *drv, @@ -491,7 +491,7 @@ static inline struct device *driver_find_device_by_name(struct device_driver *dr /** * driver_find_device_by_of_node- device iterator for locating a particular device * by of_node pointer. - * @driver: the driver we're iterating + * @drv: the driver we're iterating * @np: of_node pointer to match. */ static inline struct device * @@ -504,7 +504,7 @@ driver_find_device_by_of_node(struct device_driver *drv, /** * driver_find_device_by_fwnode- device iterator for locating a particular device * by fwnode pointer. - * @driver: the driver we're iterating + * @drv: the driver we're iterating * @fwnode: fwnode pointer to match. */ static inline struct device * @@ -536,7 +536,7 @@ static inline struct device *driver_find_next_device(struct device_driver *drv, /** * driver_find_device_by_acpi_dev : device iterator for locating a particular * device matching the ACPI_COMPANION device. - * @driver: the driver we're iterating + * @drv: the driver we're iterating * @adev: ACPI_COMPANION device to match. */ static inline struct device *