From patchwork Tue Oct 1 17:47:01 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 174916 Delivered-To: patch@linaro.org Received: by 2002:a92:7e96:0:0:0:0:0 with SMTP id q22csp8871185ill; Tue, 1 Oct 2019 10:47:04 -0700 (PDT) X-Google-Smtp-Source: APXvYqxVgFkcGmUxMGpOsSc05UsO9dhJQVv9bk3bwJJPL+Jekt1iI1LHiL3i1YWhFediXUHxcO6a X-Received: by 2002:a17:907:2126:: with SMTP id qo6mr25819790ejb.256.1569952024093; Tue, 01 Oct 2019 10:47:04 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1569952024; cv=none; d=google.com; s=arc-20160816; b=JNNHpW5/XLTdMyW7ZQ7DzmMIiZ8oA+SzrtwPMZWMmkDUyENI2sqHhup9Qsgc9X+P5l 31MF/WShitp5dAuSeu3j3rss80t7yCiu791+nCC+B9F4nwK6IRTGISQGPeIk2iYOX53x gh4BH7TFg3ElZ2anKxnrokuCqp+2T5HPxonCjZDVXC2phl0/wwENsz6b5NUrcADow5He wp/Fh00Xz/YDiEK/HRwqNhVaAJcxJyWgvoauHrfmZp5O+YbJ0+ikUTwL7mgsipVeqwzJ 6dLf5cbW4oktbOckQh24/4jpqn8PwAOc2lJHc8skOHST9/IK9l4kIhZvyRS9uZfxdGtg xr9A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :organization:message-id:subject:cc:to:from:date; bh=KRAeKESukvLD0R9KiJj7Y1Hjy/Q2jKp/BlOp1ucdG0E=; b=MpVARAR1DzuB2mmmWllQUVpMyTxYQTjOy0sWMhBGXJPOX8Bp7SxcMmPa+OULzFITbo x/iwvHYJSB2WxTmLl6/sLGY7C6POM471nCQETjTz/iWq+fGd/ZBVmzmsrRElSxLQMtXz OfcHbNj91vb9i8uOcHR8s5+lyJMEViN4VAdBbAiUKoIrpJ/OKlPY9+xlADxExyqdWhqi VQyAXg4qLUy6yG7mM+YlGAUpu+cbqu76aR4BKrsVQj+J8vOtTv6yrQ+Fbw1LiVLYLSIK 2ANfthrFDW+h9ahoSCjJ7neh12vyJfg7RqS66Ec9JcG1uHlv0NlDO5H+JGxrB8teD+7s JnRw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id h17si9048367ejt.173.2019.10.01.10.47.03; Tue, 01 Oct 2019 10:47:04 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730170AbfJARrD (ORCPT + 27 others); Tue, 1 Oct 2019 13:47:03 -0400 Received: from ms.lwn.net ([45.79.88.28]:38456 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726096AbfJARrD (ORCPT ); Tue, 1 Oct 2019 13:47:03 -0400 Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 73359316; Tue, 1 Oct 2019 17:47:02 +0000 (UTC) Date: Tue, 1 Oct 2019 11:47:01 -0600 From: Jonathan Corbet To: LKML Cc: linux-doc@vger.kernel.org, Christian =?utf-8?b?S8O2bmln?= Subject: [PATCH] docs/driver-api: Catch up with dma_buf file-name changes Message-ID: <20191001114701.7349d9ec@lwn.net> Organization: LWN.net MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org drivers/dma_buf/reservation.c was renamed to dma-resv.c (and include/linux/reservation.h to dma-resv.h), but the documentation was not updated to match, leading to these build errors: Error: Cannot open file ./drivers/dma-buf/reservation.c Error: Cannot open file ./drivers/dma-buf/reservation.c Error: Cannot open file ./drivers/dma-buf/reservation.c Error: Cannot open file ./include/linux/reservation.h Error: Cannot open file ./include/linux/reservation.h Update the documentation and make the world happy again. Fixes: 52791eeec1d9 ("dma-buf: rename reservation_object to dma_resv') Signed-off-by: Jonathan Corbet --- [I'll carry this in docs-next unless somebody objects.] Documentation/driver-api/dma-buf.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.21.0 diff --git a/Documentation/driver-api/dma-buf.rst b/Documentation/driver-api/dma-buf.rst index b541e97c7ab1..c78db28519f7 100644 --- a/Documentation/driver-api/dma-buf.rst +++ b/Documentation/driver-api/dma-buf.rst @@ -118,13 +118,13 @@ Kernel Functions and Structures Reference Reservation Objects ------------------- -.. kernel-doc:: drivers/dma-buf/reservation.c +.. kernel-doc:: drivers/dma-buf/dma-resv.c :doc: Reservation Object Overview -.. kernel-doc:: drivers/dma-buf/reservation.c +.. kernel-doc:: drivers/dma-buf/dma-resv.c :export: -.. kernel-doc:: include/linux/reservation.h +.. kernel-doc:: include/linux/dma-resv.h :internal: DMA Fences