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 X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 12CF9C433B4 for ; Mon, 10 May 2021 10:28:16 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id A83EA61923 for ; Mon, 10 May 2021 10:28:15 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A83EA61923 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 06D7C89B03; Mon, 10 May 2021 10:28:15 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 0044289B03; Mon, 10 May 2021 10:28:12 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 9332B6191D; Mon, 10 May 2021 10:28:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620642492; bh=l5qEtyehlyXvv/SDET45/vq79ol14S8NVaAHOXDTcyE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C0s4/sCpLX8dUqr3yiQfShgVZSZ03jRS5yubk3BbNc0DnvOxVkJYOhXHu3TADVXvh 43Ozg2Yx/tqKfgLdOrlELynryWvELECKvrtAed5SFABpvTGMgWe70ZKh8I8iZ1Loe5 VXU39W3GA8N6OTEvmQAczKGWqKIyvCigQITV2G7gucuhPm9Ub08oJWv9Fs3fHuir72 n/rR9khB+/2vMWBJItqiGJnJX7OkNXqzmn2FJxzQIa/8bsmoekWYO/vkZapKATKa4x jSmjJqZq2dlUWJhHEnN5FFZYEFS4Akt5WF3yjpYMDD0I72RvRHjuo4OjjMGKEJkKB8 alViREAP/T09Q== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lg38z-000UY0-9h; Mon, 10 May 2021 12:28:09 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Subject: [PATCH 44/53] docs: gpu: avoid using UTF-8 chars Date: Mon, 10 May 2021 12:26:56 +0200 Message-Id: <36bc1118467da645a57515743c9f6c1cd86abe8c.1620641727.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 , Jonathan Corbet , Mauro Carvalho Chehab , dri-devel@lists.freedesktop.org, Liviu Dudau , linux-kernel@vger.kernel.org, David Airlie , "James \(Qian\) Wang" , Rodrigo Vivi , Mali DP Maintainers , Mihail Atanassov , intel-gfx@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" While UTF-8 characters can be used at the Linux documentation, the best is to use them only when ASCII doesn't offer a good replacement. So, replace the occurences of the following UTF-8 characters: - U+2019 ('’'): RIGHT SINGLE QUOTATION MARK Signed-off-by: Mauro Carvalho Chehab --- Documentation/gpu/i915.rst | 2 +- Documentation/gpu/komeda-kms.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 486c720f3890..2cbf54460b48 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -361,7 +361,7 @@ Locking Guidelines real bad. #. Do not nest different lru/memory manager locks within each other. - Take them in turn to update memory allocations, relying on the object’s + Take them in turn to update memory allocations, relying on the object's dma_resv ww_mutex to serialize against other operations. #. The suggestion for lru/memory managers locks is that they are small diff --git a/Documentation/gpu/komeda-kms.rst b/Documentation/gpu/komeda-kms.rst index eb693c857e2d..c2067678e92c 100644 --- a/Documentation/gpu/komeda-kms.rst +++ b/Documentation/gpu/komeda-kms.rst @@ -324,7 +324,7 @@ the control-abilites of device. We have &komeda_dev, &komeda_pipeline, &komeda_component. Now fill devices with pipelines. Since komeda is not for D71 only but also intended for later products, -of course we’d better share as much as possible between different products. To +of course we'd better share as much as possible between different products. To achieve this, split the komeda device into two layers: CORE and CHIP. - CORE: for common features and capabilities handling. -- 2.30.2 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 X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4E47FC433ED for ; Mon, 10 May 2021 10:31:54 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id EED936196C for ; Mon, 10 May 2021 10:31:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EED936196C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 676D86E0D5; Mon, 10 May 2021 10:31:53 +0000 (UTC) Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by gabe.freedesktop.org (Postfix) with ESMTPS id 0044289B03; Mon, 10 May 2021 10:28:12 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 9332B6191D; Mon, 10 May 2021 10:28:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620642492; bh=l5qEtyehlyXvv/SDET45/vq79ol14S8NVaAHOXDTcyE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C0s4/sCpLX8dUqr3yiQfShgVZSZ03jRS5yubk3BbNc0DnvOxVkJYOhXHu3TADVXvh 43Ozg2Yx/tqKfgLdOrlELynryWvELECKvrtAed5SFABpvTGMgWe70ZKh8I8iZ1Loe5 VXU39W3GA8N6OTEvmQAczKGWqKIyvCigQITV2G7gucuhPm9Ub08oJWv9Fs3fHuir72 n/rR9khB+/2vMWBJItqiGJnJX7OkNXqzmn2FJxzQIa/8bsmoekWYO/vkZapKATKa4x jSmjJqZq2dlUWJhHEnN5FFZYEFS4Akt5WF3yjpYMDD0I72RvRHjuo4OjjMGKEJkKB8 alViREAP/T09Q== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lg38z-000UY0-9h; Mon, 10 May 2021 12:28:09 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Date: Mon, 10 May 2021 12:26:56 +0200 Message-Id: <36bc1118467da645a57515743c9f6c1cd86abe8c.1620641727.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 X-Mailman-Approved-At: Mon, 10 May 2021 10:31:52 +0000 Subject: [Intel-gfx] [PATCH 44/53] docs: gpu: avoid using UTF-8 chars 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: Thomas Zimmermann , Jonathan Corbet , Mauro Carvalho Chehab , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, David Airlie , "James \(Qian\) Wang" , Maxime Ripard , Mali DP Maintainers , Mihail Atanassov , intel-gfx@lists.freedesktop.org Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" V2hpbGUgVVRGLTggY2hhcmFjdGVycyBjYW4gYmUgdXNlZCBhdCB0aGUgTGludXggZG9jdW1lbnRh dGlvbiwKdGhlIGJlc3QgaXMgdG8gdXNlIHRoZW0gb25seSB3aGVuIEFTQ0lJIGRvZXNuJ3Qgb2Zm ZXIgYSBnb29kIHJlcGxhY2VtZW50LgpTbywgcmVwbGFjZSB0aGUgb2NjdXJlbmNlcyBvZiB0aGUg Zm9sbG93aW5nIFVURi04IGNoYXJhY3RlcnM6CgoJLSBVKzIwMTkgKCfigJknKTogUklHSFQgU0lO R0xFIFFVT1RBVElPTiBNQVJLCgpTaWduZWQtb2ZmLWJ5OiBNYXVybyBDYXJ2YWxobyBDaGVoYWIg PG1jaGVoYWIraHVhd2VpQGtlcm5lbC5vcmc+Ci0tLQogRG9jdW1lbnRhdGlvbi9ncHUvaTkxNS5y c3QgICAgICAgfCAyICstCiBEb2N1bWVudGF0aW9uL2dwdS9rb21lZGEta21zLnJzdCB8IDIgKy0K IDIgZmlsZXMgY2hhbmdlZCwgMiBpbnNlcnRpb25zKCspLCAyIGRlbGV0aW9ucygtKQoKZGlmZiAt LWdpdCBhL0RvY3VtZW50YXRpb24vZ3B1L2k5MTUucnN0IGIvRG9jdW1lbnRhdGlvbi9ncHUvaTkx NS5yc3QKaW5kZXggNDg2YzcyMGYzODkwLi4yY2JmNTQ0NjBiNDggMTAwNjQ0Ci0tLSBhL0RvY3Vt ZW50YXRpb24vZ3B1L2k5MTUucnN0CisrKyBiL0RvY3VtZW50YXRpb24vZ3B1L2k5MTUucnN0CkBA IC0zNjEsNyArMzYxLDcgQEAgTG9ja2luZyBHdWlkZWxpbmVzCiAJICByZWFsIGJhZC4KIAogIy4g RG8gbm90IG5lc3QgZGlmZmVyZW50IGxydS9tZW1vcnkgbWFuYWdlciBsb2NrcyB3aXRoaW4gZWFj aCBvdGhlci4KLSAgIFRha2UgdGhlbSBpbiB0dXJuIHRvIHVwZGF0ZSBtZW1vcnkgYWxsb2NhdGlv bnMsIHJlbHlpbmcgb24gdGhlIG9iamVjdOKAmXMKKyAgIFRha2UgdGhlbSBpbiB0dXJuIHRvIHVw ZGF0ZSBtZW1vcnkgYWxsb2NhdGlvbnMsIHJlbHlpbmcgb24gdGhlIG9iamVjdCdzCiAgICBkbWFf cmVzdiB3d19tdXRleCB0byBzZXJpYWxpemUgYWdhaW5zdCBvdGhlciBvcGVyYXRpb25zLgogCiAj LiBUaGUgc3VnZ2VzdGlvbiBmb3IgbHJ1L21lbW9yeSBtYW5hZ2VycyBsb2NrcyBpcyB0aGF0IHRo ZXkgYXJlIHNtYWxsCmRpZmYgLS1naXQgYS9Eb2N1bWVudGF0aW9uL2dwdS9rb21lZGEta21zLnJz dCBiL0RvY3VtZW50YXRpb24vZ3B1L2tvbWVkYS1rbXMucnN0CmluZGV4IGViNjkzYzg1N2UyZC4u YzIwNjc2NzhlOTJjIDEwMDY0NAotLS0gYS9Eb2N1bWVudGF0aW9uL2dwdS9rb21lZGEta21zLnJz dAorKysgYi9Eb2N1bWVudGF0aW9uL2dwdS9rb21lZGEta21zLnJzdApAQCAtMzI0LDcgKzMyNCw3 IEBAIHRoZSBjb250cm9sLWFiaWxpdGVzIG9mIGRldmljZS4KIAogV2UgaGF2ZSAma29tZWRhX2Rl diwgJmtvbWVkYV9waXBlbGluZSwgJmtvbWVkYV9jb21wb25lbnQuIE5vdyBmaWxsIGRldmljZXMg d2l0aAogcGlwZWxpbmVzLiBTaW5jZSBrb21lZGEgaXMgbm90IGZvciBENzEgb25seSBidXQgYWxz byBpbnRlbmRlZCBmb3IgbGF0ZXIgcHJvZHVjdHMsCi1vZiBjb3Vyc2Ugd2XigJlkIGJldHRlciBz aGFyZSBhcyBtdWNoIGFzIHBvc3NpYmxlIGJldHdlZW4gZGlmZmVyZW50IHByb2R1Y3RzLiBUbwor b2YgY291cnNlIHdlJ2QgYmV0dGVyIHNoYXJlIGFzIG11Y2ggYXMgcG9zc2libGUgYmV0d2VlbiBk aWZmZXJlbnQgcHJvZHVjdHMuIFRvCiBhY2hpZXZlIHRoaXMsIHNwbGl0IHRoZSBrb21lZGEgZGV2 aWNlIGludG8gdHdvIGxheWVyczogQ09SRSBhbmQgQ0hJUC4KIAogLSAgIENPUkU6IGZvciBjb21t b24gZmVhdHVyZXMgYW5kIGNhcGFiaWxpdGllcyBoYW5kbGluZy4KLS0gCjIuMzAuMgoKX19fX19f X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KSW50ZWwtZ2Z4IG1haWxp bmcgbGlzdApJbnRlbC1nZnhAbGlzdHMuZnJlZWRlc2t0b3Aub3JnCmh0dHBzOi8vbGlzdHMuZnJl ZWRlc2t0b3Aub3JnL21haWxtYW4vbGlzdGluZm8vaW50ZWwtZ2Z4Cg== 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 X-Spam-Level: X-Spam-Status: No, score=-19.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 66B96C433B4 for ; Mon, 10 May 2021 10:41:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 346616191B for ; Mon, 10 May 2021 10:41:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232196AbhEJKmc (ORCPT ); Mon, 10 May 2021 06:42:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:40406 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232677AbhEJKfA (ORCPT ); Mon, 10 May 2021 06:35:00 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 9332B6191D; Mon, 10 May 2021 10:28:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620642492; bh=l5qEtyehlyXvv/SDET45/vq79ol14S8NVaAHOXDTcyE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=C0s4/sCpLX8dUqr3yiQfShgVZSZ03jRS5yubk3BbNc0DnvOxVkJYOhXHu3TADVXvh 43Ozg2Yx/tqKfgLdOrlELynryWvELECKvrtAed5SFABpvTGMgWe70ZKh8I8iZ1Loe5 VXU39W3GA8N6OTEvmQAczKGWqKIyvCigQITV2G7gucuhPm9Ub08oJWv9Fs3fHuir72 n/rR9khB+/2vMWBJItqiGJnJX7OkNXqzmn2FJxzQIa/8bsmoekWYO/vkZapKATKa4x jSmjJqZq2dlUWJhHEnN5FFZYEFS4Akt5WF3yjpYMDD0I72RvRHjuo4OjjMGKEJkKB8 alViREAP/T09Q== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lg38z-000UY0-9h; Mon, 10 May 2021 12:28:09 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mali DP Maintainers , "James (Qian) Wang" , "Jonathan Corbet" , Daniel Vetter , David Airlie , Jani Nikula , Joonas Lahtinen , Liviu Dudau , Maarten Lankhorst , Maxime Ripard , Mihail Atanassov , Rodrigo Vivi , Thomas Zimmermann , dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: [PATCH 44/53] docs: gpu: avoid using UTF-8 chars Date: Mon, 10 May 2021 12:26:56 +0200 Message-Id: <36bc1118467da645a57515743c9f6c1cd86abe8c.1620641727.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org While UTF-8 characters can be used at the Linux documentation, the best is to use them only when ASCII doesn't offer a good replacement. So, replace the occurences of the following UTF-8 characters: - U+2019 ('’'): RIGHT SINGLE QUOTATION MARK Signed-off-by: Mauro Carvalho Chehab --- Documentation/gpu/i915.rst | 2 +- Documentation/gpu/komeda-kms.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst index 486c720f3890..2cbf54460b48 100644 --- a/Documentation/gpu/i915.rst +++ b/Documentation/gpu/i915.rst @@ -361,7 +361,7 @@ Locking Guidelines real bad. #. Do not nest different lru/memory manager locks within each other. - Take them in turn to update memory allocations, relying on the object’s + Take them in turn to update memory allocations, relying on the object's dma_resv ww_mutex to serialize against other operations. #. The suggestion for lru/memory managers locks is that they are small diff --git a/Documentation/gpu/komeda-kms.rst b/Documentation/gpu/komeda-kms.rst index eb693c857e2d..c2067678e92c 100644 --- a/Documentation/gpu/komeda-kms.rst +++ b/Documentation/gpu/komeda-kms.rst @@ -324,7 +324,7 @@ the control-abilites of device. We have &komeda_dev, &komeda_pipeline, &komeda_component. Now fill devices with pipelines. Since komeda is not for D71 only but also intended for later products, -of course we’d better share as much as possible between different products. To +of course we'd better share as much as possible between different products. To achieve this, split the komeda device into two layers: CORE and CHIP. - CORE: for common features and capabilities handling. -- 2.30.2