From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 773D0C10F11 for ; Mon, 22 Apr 2019 13:36:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3EFD02064A for ; Mon, 22 Apr 2019 13:36:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1555940211; bh=OgKW8Le/Vcu7HoszvC/fZ/RFhMMoXtzV+ROuH4yjlM8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Qnrakr21VDGyCv8BXQC3FI0adpApIJAmGTKpI+C7J60K2JwEBPswlli4ja9tWtYlC HbbOHBF/7p/bueBGKA/33vMVj+uBm8yXT36/5ROt1M8bkOTiUpCpL78HfenlWTWYvo ttsbahqXjO78unDgD+TKrVc8ov8ngJ2L23LtbEik= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728297AbfDVNgu (ORCPT ); Mon, 22 Apr 2019 09:36:50 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:36816 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727384AbfDVN2N (ORCPT ); Mon, 22 Apr 2019 09:28:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=0m721at5cwMfiWxrdIYV8i/+vD6LBjTJalnje+Q//hI=; b=VIZxgOULYxeDRamD34NPzq3NEz TxHycxvYu0+QiMiSF+MiZcCYeu8ffIPYnGV1FXawwVoS3YKjXMNw8UGiu92KKsVaqoMdwVja21RbO MxUfsxl8ceo3aPvnsuN/rMMGnpUvVrLqSfKOorH7lSiYXpy1oK0IpYvmvJzM78b55wCFJ+C1JiT2G 1nluUrvooua5xvnusXMKp5Jn73o3pCbEiLYgMzbNONMjCdHgZ9VeaQit5sHHSMwxq+IHgh39YjJnP ckMQswUJxhFwKMLGpBye3aa+0Om7jF/4TOJMcAcxpjl3pBsp9Ug6s3jd7jOTi0cqLpkZeIDTfUFnd JAWtY5Tw==; Received: from 179.176.125.229.dynamic.adsl.gvt.net.br ([179.176.125.229] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1hIYzU-0005HS-KL; Mon, 22 Apr 2019 13:28:12 +0000 Received: from mchehab by bombadil.infradead.org with local (Exim 4.92) (envelope-from ) id 1hIYzS-0005jV-8c; Mon, 22 Apr 2019 10:28:10 -0300 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet Subject: [PATCH v2 01/79] docs: core-api: fix broken references for div64.c and gcd.c Date: Mon, 22 Apr 2019 10:26:50 -0300 Message-Id: <160e8af0eafa34b0f7e78b59eae41ede437d4693.1555938375.git.mchehab+samsung@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Those files were moved to lib/math. Fixes: 9635bad21596 ("lib: Move mathematic helpers to separate folder") Signed-off-by: Mauro Carvalho Chehab --- Documentation/core-api/kernel-api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/core-api/kernel-api.rst b/Documentation/core-api/kernel-api.rst index 71f5d2fe39b7..a29c99d13331 100644 --- a/Documentation/core-api/kernel-api.rst +++ b/Documentation/core-api/kernel-api.rst @@ -147,10 +147,10 @@ Division Functions .. kernel-doc:: include/linux/math64.h :internal: -.. kernel-doc:: lib/div64.c +.. kernel-doc:: lib/math/div64.c :functions: div_s64_rem div64_u64_rem div64_u64 div64_s64 -.. kernel-doc:: lib/gcd.c +.. kernel-doc:: lib/math/gcd.c :export: UUID/GUID -- 2.20.1