Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030900AbbD1UyZ (ORCPT ); Tue, 28 Apr 2015 16:54:25 -0400 Received: from mail-lb0-f175.google.com ([209.85.217.175]:34208 "EHLO mail-lb0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965269AbbD1UyW (ORCPT ); Tue, 28 Apr 2015 16:54:22 -0400 From: Andrey Skvortsov To: David Woodhouse , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Andrey Skvortsov Subject: [PATCH] jffs2: fix UTF-8 character in pr_info Date: Tue, 28 Apr 2015 23:54:05 +0300 Message-Id: <1430254445-32676-1-git-send-email-andrej.skvortzov@gmail.com> X-Mailer: git-send-email 2.1.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1052 Lines: 32 Boot log contained string: jffs2: version 2.2. \xffffffc2\xffffffa9 2001-2006 Red Hat, Inc. non-ASCII characters are printed in HEX. 0xC2A9 is copyright sign in UTF-8. This patch replace it with '(c)' to make boot log readable. Signed-off-by: Andrey Skvortsov --- fs/jffs2/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index 3d76f28..763a3dc 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c @@ -382,7 +382,7 @@ static int __init init_jffs2_fs(void) #ifdef CONFIG_JFFS2_SUMMARY " (SUMMARY) " #endif - " © 2001-2006 Red Hat, Inc.\n"); + " (c) 2001-2006 Red Hat, Inc.\n"); jffs2_inode_cachep = kmem_cache_create("jffs2_i", sizeof(struct jffs2_inode_info), -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/