From patchwork Fri Apr 5 06:51:59 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mitul Golani X-Patchwork-Id: 13618581 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9EAE1CD1296 for ; Fri, 5 Apr 2024 06:58:24 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3133610E258; Fri, 5 Apr 2024 06:58:21 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="UsH/gmfw"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4FDE810E258; Fri, 5 Apr 2024 06:58:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1712300298; x=1743836298; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=5raj5C+ysIqUQ5UhYYvhR/JwBtOXhu9ThhurMWUw26k=; b=UsH/gmfwTLjoUsEwPFSWi4o9FHVEEXx9T7KFYxRgKmEa8dFMRPnc42rt wg1u6Ha+6O3XfCrxC97jYqnTBs64+xyvvDIuYZTCQjPcSXqH9vuJzMBLD rZQ3+mJP6PM2fc0urZD2hjpCzuS8M0QzqFV6D4RSP3IeYC/c0syMSMHn8 H0fmF1vvRpi1Lxf/4OqnS2HqwxZzzKqv6SejDfktv14opZTr2ACp1iugL nuqycCXLR/RsNRjOKX25lFFse7tvZ3aLJ8LTlOpBsTMaoIbkS0j0biGv4 kdyvTHIRDZsRg1aGYZnoXElBW+RFGbYBEV8Xlo6KgmyFM1+224wIzjFsu g==; X-CSE-ConnectionGUID: PIxt4YMHSYi1KDDXNm6ZFg== X-CSE-MsgGUID: IUfBavRlTGOSnZTBaSOYJg== X-IronPort-AV: E=McAfee;i="6600,9927,11034"; a="8198822" X-IronPort-AV: E=Sophos;i="6.07,180,1708416000"; d="scan'208";a="8198822" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Apr 2024 23:58:18 -0700 X-CSE-ConnectionGUID: NVycHH/BTt2T7dfejkl8Bw== X-CSE-MsgGUID: ZBCpg4tfSU6uK3teRBxF7Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,180,1708416000"; d="scan'208";a="19018215" Received: from mgolanimitul-x299-ud4-pro.iind.intel.com ([10.190.239.114]) by orviesa009.jf.intel.com with ESMTP; 04 Apr 2024 23:58:16 -0700 From: Mitul Golani To: dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org Cc: ankit.k.nautiyal@intel.com, jani.nikula@intel.com, sfr@canb.auug.org.au Subject: [PATCH] drm/dp: correct struct member name in documentation Date: Fri, 5 Apr 2024 12:21:59 +0530 Message-Id: <20240405065159.439145-1-mitulkumar.ajitkumar.golani@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Correct struct member name to 'mode' instead of 'operation mode' in 'drm_dp_as_sdp' structure description. Fixes: 0bbb8f594e33 ("drm/dp: Add Adaptive Sync SDP logging") Cc: Mitul Golani Cc: Ankit Nautiyal Cc: Jani Nikula Signed-off-by: Mitul Golani Reviewed-by: Dmitry Baryshkov Reported-by: Stephen Rothwell --- include/drm/display/drm_dp_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h index baf9949ff96f..6799f57d635c 100644 --- a/include/drm/display/drm_dp_helper.h +++ b/include/drm/display/drm_dp_helper.h @@ -112,7 +112,7 @@ struct drm_dp_vsc_sdp { * @target_rr: Target Refresh * @duration_incr_ms: Successive frame duration increase * @duration_decr_ms: Successive frame duration decrease - * @operation_mode: Adaptive Sync Operation Mode + * @mode: Adaptive Sync Operation Mode */ struct drm_dp_as_sdp { unsigned char sdp_type;