From patchwork Tue Oct 3 01:13:49 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13406652 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 7F695E776E9 for ; Tue, 3 Oct 2023 01:13:56 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4CB9C10E17D; Tue, 3 Oct 2023 01:13:55 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by gabe.freedesktop.org (Postfix) with ESMTPS id 38E2F10E1FA for ; Tue, 3 Oct 2023 01:13:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=JZrgAFcocfmJ7wr8txtlkIWUzzd0SjphU1ZT0UcIUj8=; b=Ihpa+wmITsTi43mwt/V3xZUuUq VqebiD33iHqOUu2ob/xLb7m1foi6aYUqIBT3TAfJVEUQ/XvXdD6oayeQ7ZTC+s0KM69jArTiwLWC7 GZsgipBgX4hQ9Yb61MTEu8mbNHd4uwNdOGsXi2cLY4CyzNhBZjGIEYT6ban9no+wrRQboLdXQdex0 EOKzQlTW0LyTVnNCgRjnzBq3V9Fi5PhNroohu0qpBwjZpOrG3ggfzZz0XMRvKw96u2oIP2NeO0Voi HezlkPDY/eNpfdHpxGvyfebR8EaS9ydZnfBjVfj5czZM3lbZfAJDQq1O4MOsD33ANlNpe5VrJBFZq 0G7Pdj0Q==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qnTyx-00DcHx-1c; Tue, 03 Oct 2023 01:13:51 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Subject: [PATCH 3/3] drm/rect: fix kernel-doc typos Date: Mon, 2 Oct 2023 18:13:49 -0700 Message-ID: <20231003011349.27593-3-rdunlap@infradead.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231003011349.27593-1-rdunlap@infradead.org> References: <20231003011349.27593-1-rdunlap@infradead.org> MIME-Version: 1.0 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 , Randy Dunlap , Maxime Ripard , dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Correct typos of "translated". Signed-off-by: Randy Dunlap Cc: David Airlie Cc: Daniel Vetter Cc: dri-devel@lists.freedesktop.org Cc: Maarten Lankhorst Cc: Maxime Ripard Cc: Thomas Zimmermann Reviewed-by: Simon Ser --- include/drm/drm_rect.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -- a/include/drm/drm_rect.h b/include/drm/drm_rect.h --- a/include/drm/drm_rect.h +++ b/include/drm/drm_rect.h @@ -129,7 +129,7 @@ static inline void drm_rect_adjust_size( /** * drm_rect_translate - translate the rectangle - * @r: rectangle to be tranlated + * @r: rectangle to be translated * @dx: horizontal translation * @dy: vertical translation * @@ -146,7 +146,7 @@ static inline void drm_rect_translate(st /** * drm_rect_translate_to - translate the rectangle to an absolute position - * @r: rectangle to be tranlated + * @r: rectangle to be translated * @x: horizontal position * @y: vertical position *