From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-f198.google.com (mail-qk1-f198.google.com [209.85.222.198]) by kanga.kvack.org (Postfix) with ESMTP id 94B3E6B000D for ; Fri, 19 Oct 2018 12:04:50 -0400 (EDT) Received: by mail-qk1-f198.google.com with SMTP id v198-v6so35784616qka.16 for ; Fri, 19 Oct 2018 09:04:50 -0700 (PDT) Received: from mx1.redhat.com (mx1.redhat.com. [209.132.183.28]) by mx.google.com with ESMTPS id e27-v6si885598qtm.339.2018.10.19.09.04.49 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 19 Oct 2018 09:04:49 -0700 (PDT) From: jglisse@redhat.com Subject: [PATCH 1/6] mm/hmm: fix utf8 ... Date: Fri, 19 Oct 2018 12:04:37 -0400 Message-Id: <20181019160442.18723-2-jglisse@redhat.com> In-Reply-To: <20181019160442.18723-1-jglisse@redhat.com> References: <20181019160442.18723-1-jglisse@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: owner-linux-mm@kvack.org List-ID: To: linux-mm@kvack.org Cc: Andrew Morton , linux-kernel@vger.kernel.org, =?UTF-8?q?J=C3=A9r=C3=B4me=20Glisse?= From: JA(C)rA'me Glisse Somehow utf=8 must have been broken. Signed-off-by: JA(C)rA'me Glisse Cc: Andrew Morton --- include/linux/hmm.h | 2 +- mm/hmm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/hmm.h b/include/linux/hmm.h index 4c92e3ba3e16..1ff4bae7ada7 100644 --- a/include/linux/hmm.h +++ b/include/linux/hmm.h @@ -11,7 +11,7 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * Authors: JA?A(C)rA?A'me Glisse + * Authors: JA(C)rA'me Glisse */ /* * Heterogeneous Memory Management (HMM) diff --git a/mm/hmm.c b/mm/hmm.c index c968e49f7a0c..9a068a1da487 100644 --- a/mm/hmm.c +++ b/mm/hmm.c @@ -11,7 +11,7 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * Authors: JA?A(C)rA?A'me Glisse + * Authors: JA(C)rA'me Glisse */ /* * Refer to include/linux/hmm.h for information about heterogeneous memory -- 2.17.2