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=-10.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 042A5C433B4 for ; Tue, 11 May 2021 17:01:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C1C3C6134F for ; Tue, 11 May 2021 17:01:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231506AbhEKRCg (ORCPT ); Tue, 11 May 2021 13:02:36 -0400 Received: from ms.lwn.net ([45.79.88.28]:59890 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231230AbhEKRCg (ORCPT ); Tue, 11 May 2021 13:02:36 -0400 Received: from localhost (unknown [IPv6:2601:281:8300:104d:444a:d152:279d:1dbb]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 6C8034BF; Tue, 11 May 2021 17:01:27 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 6C8034BF DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1620752487; bh=QmVYJvT1Kzq68R+QLKACGPLdolv6eNZVx9knetb0KFs=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=irQf+xtmaDJZYLKwq3hA8ztA2UhPkWaMvlGfMCect35HeamgThOzqqCroC26BP/Sl CZ5fyVVCGLDX5hEb0cnVXCWNegwA+Xs245fqJaayhz/QOZsSyLbOEm6eAcMMVYm6OY KYssjOyi8tvqVhDlU9yQOg3yj6ggq5zhGjo6YGvleqEvR4QvYakpL6DYodSr6ne5p2 POLXDUg/aNRvtMVVTSEj+i7YB0HcWdlIM/5xZz2XEUDjPiyFKgjrJG+D5PIfW0A/ku jf3zV8C5QT23k16fFmU0Sd0ej651gdEPXtb2eRRgDOFPAPrnQiy6aPBFrlggpfHlaH YTUqF86upi5qg== From: Jonathan Corbet To: Mauro Carvalho Chehab , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, "David S. Miller" , Guenter Roeck , Jakub Kicinski , Jean Delvare , Jens Axboe , intel-wired-lan@lists.osuosl.org, linux-hwmon@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH 0/5] Fix some UTF-8 bad usages In-Reply-To: References: Date: Tue, 11 May 2021 11:01:26 -0600 Message-ID: <87fsytdx21.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Mauro Carvalho Chehab writes: > This series follow up this past series: > https://lore.kernel.org/lkml/cover.1620641727.git.mchehab+huawei@kernel.org/ > > Containing just the manual fixes from it. I'll respin the remaining > patches on a separate series. > > Please note that patches 1 to 3 are identical to the ones posted > on the original series. > > Patch 1 is special: it fixes some left-overs from a convertion > from cdrom-standard.tex: there, some characters that are > valid in C were converted to some visually similar UTF-8 by LaTeX. > > Patch 2 remove U+00ac (''): NOT SIGN characters at the end of > the first line of two files. No idea why those ended being there :-p > > Patch 3 replaces: > KernelVersion:3.3 > by: > KernelVersion: 3.3 > > which is the expected format for the KernelVersion field; > > Patches 4 and 5 fix some bad usages of EM DASH/EN DASH on > places that it should be, instead, a normal hyphen. I suspect > that they ended being there due to the usage of some conversion > toolset. > > Mauro Carvalho Chehab (5): > docs: cdrom-standard.rst: get rid of uneeded UTF-8 chars > docs: ABI: remove a meaningless UTF-8 character > docs: ABI: remove some spurious characters > docs: hwmon: tmp103.rst: fix bad usage of UTF-8 chars > docs: networking: device_drivers: fix bad usage of UTF-8 chars > > .../obsolete/sysfs-kernel-fadump_registered | 2 +- > .../obsolete/sysfs-kernel-fadump_release_mem | 2 +- > Documentation/ABI/testing/sysfs-module | 4 +-- > Documentation/cdrom/cdrom-standard.rst | 30 +++++++++---------- > Documentation/hwmon/tmp103.rst | 4 +-- > .../device_drivers/ethernet/intel/i40e.rst | 4 +-- > .../device_drivers/ethernet/intel/iavf.rst | 2 +- > 7 files changed, 24 insertions(+), 24 deletions(-) These seem pretty straightforward; I've applied the set, thanks. jon