From patchwork Wed Feb 22 08:47:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Archit Taneja X-Patchwork-Id: 9586385 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 5CFCD6020B for ; Wed, 22 Feb 2017 08:47:51 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 419D928692 for ; Wed, 22 Feb 2017 08:47:51 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 35D57288B7; Wed, 22 Feb 2017 08:47:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 31F8928692 for ; Wed, 22 Feb 2017 08:47:50 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E47C56E771; Wed, 22 Feb 2017 08:47:48 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from smtp.codeaurora.org (smtp.codeaurora.org [198.145.29.96]) by gabe.freedesktop.org (Postfix) with ESMTPS id DB94A6E771 for ; Wed, 22 Feb 2017 08:47:47 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 1000) id BE06D60D35; Wed, 22 Feb 2017 08:47:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1487753267; bh=TqyXQQM75epv2Qt1KUAtSlBU3Xn4LnQOikRDaQW1Cm4=; h=From:To:Cc:Subject:Date:From; b=bKIcT5J+zt8cE3SSOxK8M9C0DC/Sca/eUKjM7HVJIJhzw5ZpjoUJn867pdrbvws5z WN6/H/iKrz8azlUs5mvxq81AN6vMOSpVHNHTtWGnXRXI2XbcmcS3X2aaQCU1k+6HWX 4PXMUYoaHa9AzX1ImF5GBL3XMrM2XSrsUkbH+rOg= Received: from localhost (unknown [202.46.23.61]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: architt@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 2F57B6080C; Wed, 22 Feb 2017 08:47:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1487753267; bh=TqyXQQM75epv2Qt1KUAtSlBU3Xn4LnQOikRDaQW1Cm4=; h=From:To:Cc:Subject:Date:From; b=bKIcT5J+zt8cE3SSOxK8M9C0DC/Sca/eUKjM7HVJIJhzw5ZpjoUJn867pdrbvws5z WN6/H/iKrz8azlUs5mvxq81AN6vMOSpVHNHTtWGnXRXI2XbcmcS3X2aaQCU1k+6HWX 4PXMUYoaHa9AzX1ImF5GBL3XMrM2XSrsUkbH+rOg= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 2F57B6080C Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=architt@codeaurora.org From: Archit Taneja To: daniel.vetter@intel.com Subject: [PATCH] drm/doc: Fix up some kms function names Date: Wed, 22 Feb 2017 14:17:41 +0530 Message-Id: <20170222084741.8485-1-architt@codeaurora.org> X-Mailer: git-send-email 2.11.0 Cc: dri-devel@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP A couple of the kms functions didn't have the correct/newest names. This prevented them to be identified as refs in the html doc. Signed-off-by: Archit Taneja Reviewed-by: Eric Engestrom Tested-by: Eric Engestrom --- include/drm/drm_mode_config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h index 6cd541d69c2e..888cc038899b 100644 --- a/include/drm/drm_mode_config.h +++ b/include/drm/drm_mode_config.h @@ -267,7 +267,7 @@ struct drm_mode_config_funcs { * passed-in &drm_atomic_state. This hook is called when the caller * encountered a &drm_modeset_lock deadlock and needs to drop all * already acquired locks as part of the deadlock avoidance dance - * implemented in drm_modeset_lock_backoff(). + * implemented in drm_modeset_backoff(). * * Any duplicated state must be invalidated since a concurrent atomic * update might change it, and the drm atomic interfaces always apply @@ -285,8 +285,8 @@ struct drm_mode_config_funcs { * itself. Note that the core first calls drm_atomic_state_clear() to * avoid code duplicate between the clear and free hooks. * - * Drivers that implement this must call drm_atomic_state_default_free() - * to release common resources. + * Drivers that implement this must call + * drm_atomic_state_default_release() to release common resources. */ void (*atomic_state_free)(struct drm_atomic_state *state); };