Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp3507057pxf; Mon, 29 Mar 2021 04:18:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy4EjM3pFE2pg+g2XhnCKELdhvPtcNQzxnpmdivsio8fDIvHMyu3Tk/t5AkjeBQ2mYdpJcH X-Received: by 2002:a05:6402:31e9:: with SMTP id dy9mr28438126edb.186.1617016728141; Mon, 29 Mar 2021 04:18:48 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1617016728; cv=none; d=google.com; s=arc-20160816; b=0gISf9lAKuwDsaXjsQNnUGDCaHC+KYv9PdDAZmlqzGZFbDvzNwg09wXeGz3XJ9G4aD 6QeKLytT4yWmQKdCALnAEFM2ggQuo4hPRs6oYHNMu5GOgvnbY1q+F7lC3IrYoQE7JbfU jNPRMxIP+pRB7S/JFwA+tHsyx34j5D7QKBUHPUJ9Ojo37o7/LUlU7nLQSzHuBHYGACj7 zHqqGlWVERLgNbXeXYTgkrC3ZMZiHPb66ruju521yxqVnzgKlxdphr7wWK2k++z/TEKp HS4qmFsvZLQZufi+c27ptXZg/bXQlGPi5C1TT7PQ/vCD34R4NffPDcSQI5W6rFLiVulP t8ig== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:references:in-reply-to :message-id:date:subject:cc:to:from; bh=7cdq1AYoo7FgjMmHEqQ1Oliyjr10aP9DItDkmdI8rQ4=; b=C3H85apJxZfv3W8OWGzhPWxGGW0uNWTJp5bBsn5XO3YM2A9DwTIRxdMRg+fw4EZA8r +W18YDz7+ASxI4DYt7N3it7E+195CuK8m2DLrg0+rgWYs1lsIWNiMIEY4OZQ4mRPpEIC UNxriYXs49T8DH90FN7v0ZulG/11p5yhzf3HZaKURIb3lpbo15L4bd/Y5gXgXOKJRcqp 3cbILlu3SX9dFQCLs40sHqr1DZIy7qOSWl1A7AfbfXKZjX8KyzVpErzXZXpS/8GL56gv kfv/B7pXjJsPPAChGti5Nlr0p4T8EKN0AufFD6skK2YXqsMMyZaQcS6YnWYp+cZ7qgzM kmig== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id d15si12151197edu.375.2021.03.29.04.18.26; Mon, 29 Mar 2021 04:18:48 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232272AbhC2LRk (ORCPT + 99 others); Mon, 29 Mar 2021 07:17:40 -0400 Received: from mail.thorsis.com ([92.198.35.195]:55158 "EHLO mail.thorsis.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232039AbhC2LRU (ORCPT ); Mon, 29 Mar 2021 07:17:20 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.thorsis.com (Postfix) with ESMTP id 0768235D7; Mon, 29 Mar 2021 13:17:19 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mail.thorsis.com Received: from mail.thorsis.com ([127.0.0.1]) by localhost (mail.thorsis.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lApW-tkxq7lu; Mon, 29 Mar 2021 13:17:18 +0200 (CEST) Received: by mail.thorsis.com (Postfix, from userid 109) id CD2CA35D8; Mon, 29 Mar 2021 13:17:18 +0200 (CEST) X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,NO_RECEIVED, NO_RELAYS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 From: Alexander Dahl To: linux-doc@vger.kernel.org, linux-gpio@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Linus Walleij , Bartosz Golaszewski , Jonathan Corbet , Alexander Dahl Subject: [PATCH 1/3] docs: gpio: mockup: Fix parameter name Date: Mon, 29 Mar 2021 13:16:46 +0200 Message-Id: <20210329111648.7969-2-ada@thorsis.com> In-Reply-To: <20210329111648.7969-1-ada@thorsis.com> References: <20210329111648.7969-1-ada@thorsis.com> Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Module probing with the parameter documented yielded this in kernel log: gpio_mockup: unknown parameter 'gpio_named_lines' ignored The parameter documented did not match the parameter actually implemented with commit 8a68ea00a62e ("gpio: mockup: implement naming the lines") long before introducing the documentation. Fixes: commit 2fd1abe99e5f ("Documentation: gpio: add documentation for gpio-mockup") Signed-off-by: Alexander Dahl --- Documentation/admin-guide/gpio/gpio-mockup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/admin-guide/gpio/gpio-mockup.rst b/Documentation/admin-guide/gpio/gpio-mockup.rst index 9fa1618b3adc..e3cafb4451aa 100644 --- a/Documentation/admin-guide/gpio/gpio-mockup.rst +++ b/Documentation/admin-guide/gpio/gpio-mockup.rst @@ -27,7 +27,7 @@ module. the second 16 and the third 4. The base GPIO for the third chip is set to 405 while for two first chips it will be assigned automatically. - gpio_named_lines + gpio_mockup_named_lines This parameter doesn't take any arguments. It lets the driver know that GPIO lines exposed by it should be named. -- 2.20.1