efs: clean up -Wunused-const-variable= warning
authorZhu Wang <wangzhu9@huawei.com>
Thu, 3 Aug 2023 01:51:03 +0000 (09:51 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Fri, 18 Aug 2023 17:18:59 +0000 (10:18 -0700)
commitbbe3656a6f1c607ba3c8babc9b1b4ab761f3a5f5
treed437551ac89053d42d99f007d16c0d044b4092fe
parent46f12960aad2d48fc6742470f718e147e5c85d06
efs: clean up -Wunused-const-variable= warning

When building with W=1, the following warning occurs.

In file included from fs/efs/super.c:18:0:
fs/efs/efs.h:22:19: warning: `cprt' defined but not used [-Wunused-const-variable=]
 static const char cprt[] = "EFS: "EFS_VERSION" - (c) 1999 Al Smith
<Al.Smith@aeschi.ch.eu.org>";
                   ^~~~
The 'cprt' is not used in any files, we move the copyright statement
into the comment.

Link: https://lkml.kernel.org/r/20230803015103.192985-1-wangzhu9@huawei.com
Signed-off-by: Zhu Wang <wangzhu9@huawei.com>
Cc: Al Smith <Al.Smith@aeschi.ch.eu.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/efs/efs.h