From nobody Mon May 11 01:27:32 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9648C433EF for ; Tue, 19 Apr 2022 07:43:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349532AbiDSHpy (ORCPT ); Tue, 19 Apr 2022 03:45:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35976 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1349521AbiDSHps (ORCPT ); Tue, 19 Apr 2022 03:45:48 -0400 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DC21E23BEB; Tue, 19 Apr 2022 00:43:05 -0700 (PDT) Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id 938F81F390; Tue, 19 Apr 2022 07:43:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1650354184; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=+5WEciGGZoDQeLuGk1GBU2bmv2YTdY6TujgI8m8L1jY=; b=x44ECah+fGJbWD9Skk8L3iqFvaFNXqcJ1S+TWhmmjuH6yFkrDRpTJbeu48tHVW0IMmondB 9cnugRnsPQaCbdXgwkzeeAkG99NeFzIUHL1v8mkeEN9zWJpthXs4IaVUnvruDQnfe6SxFw JJPPKK3fVWlYRBiStzcNz3WhhqWM3E4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1650354184; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=+5WEciGGZoDQeLuGk1GBU2bmv2YTdY6TujgI8m8L1jY=; b=6eaueXnX5UyxIYEuzkFcTblT2JQ+3j8X3TH0detTz/ut5519wGPa3mNoFTIS2benltSqq5 m54bDy87TybOVbAw== Received: from localhost.localdomain (unknown [10.100.201.122]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id 43ABB2C146; Tue, 19 Apr 2022 07:43:04 +0000 (UTC) From: Jiri Slaby To: gregkh@linuxfoundation.org Cc: linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, Jiri Slaby , Stephen Rothwell , Jonathan Corbet Subject: [PATCH] Documentation: fix tty link Date: Tue, 19 Apr 2022 09:43:02 +0200 Message-Id: <20220419074302.29632-1-jslaby@suse.cz> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The commit below causes the following warnings: Documentation/driver-api/index.rst:14: WARNING: toctree contains reference = to nonexisting document 'driver-api/tty' Documentation/driver-api/tty/index.rst: WARNING: document isn't included in= any toctree This is because I omitted the "/index" part from the link. That part is needed for directories and I was confused by the surrounding links which are links to files. Fix it in this patch. Reported-by: Stephen Rothwell Cc: Jonathan Corbet Fixes: b96cd8b05ead ("Documentation: move tty to driver-api") Signed-off-by: Jiri Slaby --- Documentation/driver-api/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/driver-api/index.rst b/Documentation/driver-api/= index.rst index bbbbcf20b7ce..d76a60d95b58 100644 --- a/Documentation/driver-api/index.rst +++ b/Documentation/driver-api/index.rst @@ -101,7 +101,7 @@ available subsections can be seen below. surface_aggregator/index switchtec sync_file - tty + tty/index vfio-mediated-device vfio vfio-pci-device-specific-driver-acceptance --=20 2.35.3