From patchwork Thu Dec 6 23:08:54 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gabriel Krisman Bertazi X-Patchwork-Id: 10717203 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2D5EA17DB for ; Thu, 6 Dec 2018 23:10:02 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1B2EA2F21D for ; Thu, 6 Dec 2018 23:10:02 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0B6352F22E; Thu, 6 Dec 2018 23:10:02 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A6B982F21D for ; Thu, 6 Dec 2018 23:10:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726345AbeLFXKA (ORCPT ); Thu, 6 Dec 2018 18:10:00 -0500 Received: from bhuna.collabora.co.uk ([46.235.227.227]:56124 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726331AbeLFXKA (ORCPT ); Thu, 6 Dec 2018 18:10:00 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: krisman) with ESMTPSA id 4AFF827ED7B From: Gabriel Krisman Bertazi To: tytso@mit.edu Cc: linux-fsdevel@vger.kernel.org, kernel@collabora.com, linux-ext4@vger.kernel.org, Gabriel Krisman Bertazi Subject: [PATCH v4 14/23] nls: utf8: Move nls-utf8{,-core}.c Date: Thu, 6 Dec 2018 18:08:54 -0500 Message-Id: <20181206230903.30011-15-krisman@collabora.com> X-Mailer: git-send-email 2.20.0.rc2 In-Reply-To: <20181206230903.30011-1-krisman@collabora.com> References: <20181206230903.30011-1-krisman@collabora.com> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Gabriel Krisman Bertazi nls_utf8 will be generated from multiple files, so lets move the existing code to a -core suffix. Signed-off-by: Gabriel Krisman Bertazi --- fs/nls/Makefile | 3 +++ fs/nls/{nls_utf8.c => nls_utf8-core.c} | 0 2 files changed, 3 insertions(+) rename fs/nls/{nls_utf8.c => nls_utf8-core.c} (100%) diff --git a/fs/nls/Makefile b/fs/nls/Makefile index 840e06aefd47..c94221b6108d 100644 --- a/fs/nls/Makefile +++ b/fs/nls/Makefile @@ -43,7 +43,10 @@ obj-$(CONFIG_NLS_ISO8859_14) += nls_iso8859-14.o obj-$(CONFIG_NLS_ISO8859_15) += nls_iso8859-15.o obj-$(CONFIG_NLS_KOI8_R) += nls_koi8-r.o obj-$(CONFIG_NLS_KOI8_U) += nls_koi8-u.o nls_koi8-ru.o + obj-$(CONFIG_NLS_UTF8) += nls_utf8.o +nls_utf8-y += nls_utf8-core.o + obj-$(CONFIG_NLS_MAC_CELTIC) += mac-celtic.o obj-$(CONFIG_NLS_MAC_CENTEURO) += mac-centeuro.o obj-$(CONFIG_NLS_MAC_CROATIAN) += mac-croatian.o diff --git a/fs/nls/nls_utf8.c b/fs/nls/nls_utf8-core.c similarity index 100% rename from fs/nls/nls_utf8.c rename to fs/nls/nls_utf8-core.c