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 0A3F8C433EF for ; Fri, 25 Mar 2022 03:22:50 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 58BA610EAE3; Fri, 25 Mar 2022 03:22:50 +0000 (UTC) X-Greylist: delayed 590 seconds by postgrey-1.36 at gabe; Fri, 25 Mar 2022 03:22:49 UTC Received: from out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4D1A210EAE3 for ; Fri, 25 Mar 2022 03:22:49 +0000 (UTC) Date: Fri, 25 Mar 2022 11:12:25 +0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1648177974; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=dSnl462JoNiMZLMQN3qva88FZOsk+DZtdNDO1IBwIjs=; b=m46wG9j+V2PkTxDMurasClQF+bLz1TsSrsR7n5XtoL1WLKKhzLJ9OTw7sizrFxV9GcDAia UC9dp6XYq4jIBvDrGBaUK3voc4BzVHsmZJyYD5hvFwGGKHu78QJFhnlpSYBYONgNAqr0sp VIEPTwxawOg/0ztDfO2BjxLwY3XlCQo= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Cai Huoqing To: Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Daniel Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drm/mm: Fix the param description for 'size' tag Message-ID: <20220325031225.GA9073@chq-T47> References: <20220317022631.10570-1-cai.huoqing@linux.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220317022631.10570-1-cai.huoqing@linux.dev> X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: linux.dev X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 17 3月 22 10:26:31, Cai Huoqing wrote: > Using "size of" instead of "end of" to fix the description for 'size' tag. > > Signed-off-by: Cai Huoqing > --- > drivers/gpu/drm/drm_mm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c > index 8257f9d4f619..c2eedfd264f8 100644 > --- a/drivers/gpu/drm/drm_mm.c > +++ b/drivers/gpu/drm/drm_mm.c Ping :) > @@ -956,7 +956,7 @@ EXPORT_SYMBOL(drm_mm_scan_color_evict); > * drm_mm_init - initialize a drm-mm allocator > * @mm: the drm_mm structure to initialize > * @start: start of the range managed by @mm > - * @size: end of the range managed by @mm > + * @size: size of the range managed by @mm > * > * Note that @mm must be cleared to 0 before calling this function. > */ > -- > 2.25.1 >