Received: by 2002:a05:6a10:1d13:0:0:0:0 with SMTP id pp19csp2974236pxb; Sun, 29 Aug 2021 09:10:02 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxZOaWDwoRgtoCTvKbg6b4ikWEbNnD8WWAkg8ziSss8lFcPCI5x+StLk9ag5VVbvp/wt0Pz X-Received: by 2002:a17:906:b094:: with SMTP id x20mr20650038ejy.257.1630253402172; Sun, 29 Aug 2021 09:10:02 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1630253402; cv=none; d=google.com; s=arc-20160816; b=n0vslZ8lUWe0HOouHdmJ90qFcvg7SRYIus4sm88QE/ABVoJeSpb1GaWZNb+fW3/Iie ovPQhYbYS82V3exZCRnAUhjdXJZUuA7tkQ4CeCrgy2udLupoqnKFkEYFKiC63aHysv9T NP/Ofu2xSHOZ/UDDcAKqlNF+rxy9BrvI+zBezygyXovVCIPXlaMvWc86khT4o1/JIDqn G8y8fe824o82wp3drb9R6l1hkrNEa5QRHRxE3fUVfTjq2I/HBRj1U+i802JlPttPOA0z qvnc+4/aaHa/gB42mVz7aPeRPOgAo1dccJapxv0CLQNFYaRoHifORaIzKBbFOHqiDAg0 rtOA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=A1OaPETLY+KWn20vYaVwG6d/qKT9tyQXtY5xRJGcnNY=; b=keZGRpoPUQjaP/CWJo2XoVnoqL8fRbuZ2vyKHxFQrb4U0rKZMl8Xz6Zi7NcUnnauct F+oVRmbHr6P8xAz3Td3YpdOTe54LDQSecEbjUA0zRFfEi4u/JdBPS94+7zA7AJYxD5v2 SRLGYpbwzBPq6o3lzoUhWmbBrHYFSswBHignjuOldey6jsl3h3/AnI8Ruc1wrGEnCOXQ ZQGJEc5c/NfspEPsVF9gLcFVOl6FQyUi6MO+OckWuxW2EBLwWIDT7tsjwmTGvNNtXfWe gnproPIIxSYjsGj1/3JSG6xBvuZRjpV8a5CcIRRVy0WpG+tJOAFJ2qHveZjUHSpLWNgq copw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id lv23si12857590ejb.287.2021.08.29.09.09.23; Sun, 29 Aug 2021 09:10:02 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235620AbhH2QFU (ORCPT + 99 others); Sun, 29 Aug 2021 12:05:20 -0400 Received: from rosenzweig.io ([138.197.143.207]:44196 "EHLO rosenzweig.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235548AbhH2QFS (ORCPT ); Sun, 29 Aug 2021 12:05:18 -0400 From: Alyssa Rosenzweig To: dri-devel@lists.freedesktop.org Cc: Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Daniel Vetter , linux-kernel@vger.kernel.org, Alyssa Rosenzweig Subject: [PATCH] drm/plane: Fix comment typo Date: Sun, 29 Aug 2021 12:04:01 -0400 Message-Id: <20210829160401.4588-1-alyssa@rosenzweig.io> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Minor typofix noticed when reading the KMS documentation. Signed-off-by: Alyssa Rosenzweig --- include/drm/drm_plane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h index fed97e35626f..0c1102dc4d88 100644 --- a/include/drm/drm_plane.h +++ b/include/drm/drm_plane.h @@ -43,7 +43,7 @@ enum drm_scaling_filter { /** * struct drm_plane_state - mutable plane state * - * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and + * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the * raw coordinates provided by userspace. Drivers should use * drm_atomic_helper_check_plane_state() and only use the derived rectangles in -- 2.30.2