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 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 581B8C76196 for ; Mon, 3 Apr 2023 15:35:41 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 05BF110E4DC; Mon, 3 Apr 2023 15:35:40 +0000 (UTC) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id CE69810E4CC; Mon, 3 Apr 2023 15:35:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680536136; x=1712072136; h=from:to:cc:subject:in-reply-to:references:date: message-id:mime-version; bh=Y8RNv3n49PxFwMFIgJOIlbEfTmTQ8dwtbs5llVu/kPU=; b=UerFzgGMjXQU8efa0qp5NeBB243XekKBcv692xx9y/BDz9BsWkFBjbcL siNEu80RCj6BEmaL5hTK9zkNop9R52GWW8tjs8asH5qx9EvCnWDf+1NwS QKHJx4tMR34EM+fmR74pZTn5M5MZ2I2ZtLJ4kgw5teMpsB2btZ+FwCc4J 1PHFNH6pGgEsYvJ+VHPcXr0hvP5lfGuuufs7PiDIona3TATmJIV3jQjoV bWKww0fkT1fDYvn7Kdm5PiZqn9qPGEHr4xgvP/7+B2IxjKgr+zxgoTWYO FLey17p1kqXrTonDnpIynnECpfDeehhbK/hUZBCOcT1y7ELO4xgdoHV9u A==; X-IronPort-AV: E=McAfee;i="6600,9927,10669"; a="341957099" X-IronPort-AV: E=Sophos;i="5.98,315,1673942400"; d="scan'208";a="341957099" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Apr 2023 08:35:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10669"; a="829611071" X-IronPort-AV: E=Sophos;i="5.98,315,1673942400"; d="scan'208";a="829611071" Received: from pstratma-mobl1.ger.corp.intel.com (HELO localhost) ([10.252.54.30]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Apr 2023 08:35:32 -0700 From: Jani Nikula To: Lee Jones , lee@kernel.org In-Reply-To: <20230331092607.700644-2-lee@kernel.org> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo References: <20230331092607.700644-1-lee@kernel.org> <20230331092607.700644-2-lee@kernel.org> Date: Mon, 03 Apr 2023 18:35:30 +0300 Message-ID: <87jzyt0yil.fsf@intel.com> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Intel-gfx] [PATCH 01/19] drm/i915/i915_scatterlist: Fix kerneldoc formatting issue - missing '@' 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: , Cc: intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Daniel Vetter , Rodrigo Vivi , David Airlie Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Fri, 31 Mar 2023, Lee Jones wrote: > Fixes the following W=1 kernel build warning(s): > > drivers/gpu/drm/i915/i915_scatterlist.c:62: warning: Function parameter or member 'size' not described in 'i915_refct_sgt_init' > > Cc: Jani Nikula > Cc: Joonas Lahtinen > Cc: Rodrigo Vivi > Cc: Tvrtko Ursulin > Cc: David Airlie > Cc: Daniel Vetter > Cc: intel-gfx@lists.freedesktop.org > Cc: dri-devel@lists.freedesktop.org > Signed-off-by: Lee Jones Thanks for the patches! Applied all but one of the drm/i915 patches to drm-intel-next or drm-intel-gt-next depending on the area. There were a couple of issues that I fixed while applying. There was a conflict with patch 5/19 against drm-intel-gt-next so I left that one out. BR, Jani. > --- > drivers/gpu/drm/i915/i915_scatterlist.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c > index 7c7a86921b1c7..e93d2538f2988 100644 > --- a/drivers/gpu/drm/i915/i915_scatterlist.c > +++ b/drivers/gpu/drm/i915/i915_scatterlist.c > @@ -56,7 +56,7 @@ static const struct i915_refct_sgt_ops rsgt_ops = { > /** > * i915_refct_sgt_init - Initialize a struct i915_refct_sgt with default ops > * @rsgt: The struct i915_refct_sgt to initialize. > - * size: The size of the underlying memory buffer. > + * @size: The size of the underlying memory buffer. > */ > void i915_refct_sgt_init(struct i915_refct_sgt *rsgt, size_t size) > { -- Jani Nikula, Intel Open Source Graphics Center