From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EA5AB1624C5; Fri, 10 Jul 2026 19:18:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783711109; cv=none; b=JNBCg99DPLMLb/ioCzOF0SWw04FojSXk8UXV2UDEPqVZnNZsagV8eChtxzdUwhQBSQxCSQHH3UD04hrLuJOTnml0ZhcgIP/PvqQcPazqoOvp5Z4gP1iI+yyrHwEd96JBuwG9Ru06pyM82R+q9/w1V+d6Hcqkgu1cnE8thcd9K88= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783711109; c=relaxed/simple; bh=bbbGVvDT5H7FtvjEiaaZkDtc9lF999Xpt6/mPQKukM8=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=reC6Vguk9rH+HX6o89qTBYudEX5K7G8dEDj0emFaDkTaPQBGfsEKWWFXl2z2VP7Ll85zS1u4ySd/9sZcxryWqbRiVRYOufjnmp7vFhcfewxdImuSXZ/PnWwTjhE8wkvPdBwFvRaZjnsbMrRskif8uLnCKZmrLA0rAlxY7UdZn7Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=sc/ByBHb; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="sc/ByBHb" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 2B92E4108A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1783711107; bh=u7jBRLz50XOFennMDJPizEDrV3JafaPuG6zv01eh734=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=sc/ByBHbzb3vKGPF8MSJSeNVG12AIDqUpYMk6kDnNIP9CE41vTZQT+SLKEiE1b735 CM0+RvagsySf1yeI46SmBwrpTLVJro2sFuym46qYTIPWBNujb6Id0ey0YmNLl7QjU9 iCGjToMZxHVT78gM9IsxbEdTmkLMlbS6yDs+lWPVUufj2eYx32erQfYGPH0wb5Uo3a 0r4uES0Lvaq1T+Dix5LZVS0ALmMADxnnHNdD7iu1+kXCOx1KtW2vMUkBka7EMOYFJH IBY1MygOpndNBlwhnOpj8Dh9m2ACC4KGUUlI4KENeP0dtjr/jqAdCtBHMmT6EyPo98 WPISVKfkWCYyA== Received: from localhost (unknown [IPv6:2601:280:4600:27b::1fe]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 2B92E4108A; Fri, 10 Jul 2026 19:18:27 +0000 (UTC) From: Jonathan Corbet To: Yuhong Cheng , linusw@kernel.org Cc: linux-gpio@vger.kernel.org, linux-doc@vger.kernel.org, Yuhong Cheng Subject: Re: [PATCH] docs: driver-api: pin-control: fix spelling of below In-Reply-To: <20260705070422.764-1-ceohunk@gmail.com> References: <20260705070422.764-1-ceohunk@gmail.com> Date: Fri, 10 Jul 2026 13:18:26 -0600 Message-ID: <87cxwulkl9.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Yuhong Cheng writes: > Fix the spelling of 'bellow' to 'below' in the PM API section. > > Signed-off-by: Yuhong Cheng > --- > Documentation/driver-api/pin-control.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/driver-api/pin-control.rst b/Documentation/driver-api/pin-control.rst > index 1f585ecca..80106e44a 100644 > --- a/Documentation/driver-api/pin-control.rst > +++ b/Documentation/driver-api/pin-control.rst > @@ -1175,7 +1175,7 @@ Possible standard state names are: "default", "init", "sleep" and "idle". > selected after the driver probe. > > - the ``sleep`` and ``idle`` states are for power management and can only > - be selected with the PM API bellow. > + be selected with the PM API below. > Applied, thanks. jon