From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755380AbbBLJCn (ORCPT ); Thu, 12 Feb 2015 04:02:43 -0500 Received: from mail-pd0-f179.google.com ([209.85.192.179]:35422 "EHLO mail-pd0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755323AbbBLJCi (ORCPT ); Thu, 12 Feb 2015 04:02:38 -0500 From: Sudip Mukherjee To: Andrew Morton Cc: Sudip Mukherjee , linux-kernel@vger.kernel.org Subject: [PATCH 3/5] fs: efs: remove nonexistant site Date: Thu, 12 Feb 2015 14:32:20 +0530 Message-Id: <1423731742-31383-3-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1423731742-31383-1-git-send-email-sudipm.mukherjee@gmail.com> References: <1423731742-31383-1-git-send-email-sudipm.mukherjee@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org remove the not-working website address from code and Kconfig file. Signed-off-by: Sudip Mukherjee --- fs/efs/Kconfig | 3 +-- fs/efs/super.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/efs/Kconfig b/fs/efs/Kconfig index d020e3c..d5d9c8a 100644 --- a/fs/efs/Kconfig +++ b/fs/efs/Kconfig @@ -7,8 +7,7 @@ config EFS_FS uses the XFS file system for hard disk partitions however). This implementation only offers read-only access. If you don't know - what all this is about, it's safe to say N. For more information - about EFS see its home page at . + what all this is about, it's safe to say N. To compile the EFS file system support as a module, choose M here: the module will be called efs. diff --git a/fs/efs/super.c b/fs/efs/super.c index 9aaae09..6026bd4 100644 --- a/fs/efs/super.c +++ b/fs/efs/super.c @@ -330,7 +330,7 @@ MODULE_ALIAS_FS("efs"); static int __init init_efs_fs(void) { int err; - pr_info(EFS_VERSION" - http://aeschi.ch.eu.org/efs/\n"); + pr_info(EFS_VERSION "\n"); err = init_inodecache(); if (err) goto out1; -- 1.8.1.2