From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 3AF6E155CAF; Tue, 9 Jul 2024 10:12:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720519958; cv=none; b=bE0/bWyun5BKEHAlyW+nPBqF6cZNZHnB3kHWjYQnJsqncv7cDxCONzxNENn6NqZPioNX798jXejB8mVHbEi9og+Ww0bmuN7wUK7uzKBBz2mr7YjsDCKRI7WBMl/D0C2yslKyf0fvA6BgmkYnV83sNJ9XF3KbCFA1STH1IZveYHg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1720519958; c=relaxed/simple; bh=IgWdstICSsXjuEa4YtQAmHX5uWikGdJsKamOFEMzRLI=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=GyWIebQIpbUudTZ3aRt2I5ovFuH2bzCOJJ7ZbwLMWq9fnOcEJaOybhPTb3Yl6YwUKX9fvi606ci7fr7V2E1PFPUQYhphF9cE6KpuZMcluwYWnDRAe3LHppNkbzFZeLkVbH147TzjW0iLD9bg7s9m4opm+TWRIqNUUzc0qNEI+cY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BGCWcnbP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="BGCWcnbP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0B39AC32786; Tue, 9 Jul 2024 10:12:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1720519957; bh=IgWdstICSsXjuEa4YtQAmHX5uWikGdJsKamOFEMzRLI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=BGCWcnbPQ4ga/kvvoYn4vXbbjufVmKRYpBD3UG4sajUHKazgZJEKqWPKMeAS1+sUG //n0MeOMOQp42aEyQWTZ8KLxZkE+99QMs9DVAyaKp+P1ib4MIjX70CzaIjA69KUGq0 k87CvL11YqfX0UmKgbZSLcPWcnER+UK4EAwSbRWK7mY9GZARiRvFNVBCGgzPpuKtC2 vLsh9UqxFEjD+qP4iAL8+vaf1E9xHhe0SzciEjZliOcEyYJZeZLVEV/BaYYICTMnUT y+628Z/b2yEu0QVkq590Qb1SjUO0cw5t28oAfWstLWZxrOqrCkVc5VjyYgTcuv2Jd7 WTm9miuYLhGeA== Date: Tue, 9 Jul 2024 11:12:31 +0100 From: Will Deacon To: Mark-PK Tsai Cc: Jonathan Corbet , Matthias Brugger , AngeloGioacchino Del Regno , Lu Baolu , Vegard Nossum , Randy Dunlap , Kees Cook , Andrew Morton , Jeff Xu , Leo Yan , Daniel Stone , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: Re: [PATCH] docs: iommu: Drop the stale entry in documentation TOC Message-ID: <20240709101231.GD12978@willie-the-truck> References: <20240709101055.27178-1-mark-pk.tsai@mediatek.com> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240709101055.27178-1-mark-pk.tsai@mediatek.com> User-Agent: Mutt/1.10.1 (2018-07-13) On Tue, Jul 09, 2024 at 06:10:30PM +0800, Mark-PK Tsai wrote: > The Documentation/userspace-api/iommu.rst had been removed, > so should TOC entry. > > Reported-by: Stephen Rothwell > Closes: https://lore.kernel.org/lkml/20240709190613.3fd8b7ea@canb.auug.org.au/ > Fixes: d926e7c04843 ("docs: iommu: Remove outdated Documentation/userspace-api/iommu.rst") on linux-next > Signed-off-by: Mark-PK Tsai > --- > Documentation/userspace-api/index.rst | 1 - > 1 file changed, 1 deletion(-) No need, I just fixed this as your original change was on top of the branch. Thanks for the quick response, though! Will