From patchwork Thu Mar 17 02:26:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cai Huoqing X-Patchwork-Id: 12783415 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 EC8DAC433F5 for ; Thu, 17 Mar 2022 02:33:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 9076F10EACE; Thu, 17 Mar 2022 02:33:51 +0000 (UTC) X-Greylist: delayed 409 seconds by postgrey-1.36 at gabe; Thu, 17 Mar 2022 02:33:50 UTC Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6026810EACE for ; Thu, 17 Mar 2022 02:33:50 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1647484018; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=Q2+xTQ4dDnoeik2e2Wdggjy35zUCHf1Mo81wsw6HvK0=; b=ijBIt63wme2u/42TH6noyAasLdbYIl7uXztMzIhMFJd4gtNpfq6uZoCuwBg6Gmnl6o+mxu /VtuJnFaAirBqAVa6DEsOjRMxWqpQMNJw/YiQJZ06qLmNKLmDhOD3WPe2gjcE1OBcZfFNs 3xa2CidBfKxQXkGizv3bUKcHVxvgX5Y= From: Cai Huoqing To: cai.huoqing@linux.dev Subject: [PATCH] drm/mm: Fix the param description for 'size' tag Date: Thu, 17 Mar 2022 10:26:31 +0800 Message-Id: <20220317022631.10570-1-cai.huoqing@linux.dev> MIME-Version: 1.0 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: , Cc: Thomas Zimmermann , David Airlie , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" 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 @@ -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. */