Skip to content

Commit c5fcb51

Browse files
committed
erofs: clean up file headers & footers
- Remove my outdated misleading email address; - Get rid of all unnecessary trailing newline by accident. Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Chao Yu <[email protected]> Signed-off-by: Gao Xiang <[email protected]>
1 parent 7dea3de commit c5fcb51

File tree

18 files changed

+0
-34
lines changed

18 files changed

+0
-34
lines changed

fs/erofs/Kconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,3 @@ config EROFS_FS_ZIP
7575
Enable fixed-sized output compression for EROFS.
7676

7777
If you don't want to enable compression feature, say N.
78-

fs/erofs/compress.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2019 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#ifndef __EROFS_FS_COMPRESS_H
87
#define __EROFS_FS_COMPRESS_H
@@ -85,4 +84,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
8584
struct list_head *pagepool);
8685

8786
#endif
88-

fs/erofs/data.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "internal.h"
87
#include <linux/prefetch.h>
@@ -315,4 +314,3 @@ const struct address_space_operations erofs_raw_access_aops = {
315314
.readahead = erofs_raw_access_readahead,
316315
.bmap = erofs_bmap,
317316
};
318-

fs/erofs/decompressor.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2019 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "compress.h"
87
#include <linux/module.h>
@@ -407,4 +406,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
407406
return z_erofs_shifted_transform(rq, pagepool);
408407
return z_erofs_decompress_generic(rq, pagepool);
409408
}
410-

fs/erofs/dir.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "internal.h"
87

@@ -139,4 +138,3 @@ const struct file_operations erofs_dir_fops = {
139138
.read = generic_read_dir,
140139
.iterate_shared = erofs_readdir,
141140
};
142-

fs/erofs/erofs_fs.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*
55
* Copyright (C) 2017-2018 HUAWEI, Inc.
66
* https://www.huawei.com/
7-
* Created by Gao Xiang <[email protected]>
87
*/
98
#ifndef __EROFS_FS_H
109
#define __EROFS_FS_H
@@ -348,4 +347,3 @@ static inline void erofs_check_ondisk_layout_definitions(void)
348347
}
349348

350349
#endif
351-

fs/erofs/inode.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "xattr.h"
87

@@ -374,4 +373,3 @@ const struct inode_operations erofs_fast_symlink_iops = {
374373
.listxattr = erofs_listxattr,
375374
.get_acl = erofs_get_acl,
376375
};
377-

fs/erofs/internal.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#ifndef __EROFS_INTERNAL_H
87
#define __EROFS_INTERNAL_H
@@ -469,4 +468,3 @@ static inline int z_erofs_load_lz4_config(struct super_block *sb,
469468
#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
470469

471470
#endif /* __EROFS_INTERNAL_H */
472-

fs/erofs/namei.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include "xattr.h"
87

@@ -247,4 +246,3 @@ const struct inode_operations erofs_dir_iops = {
247246
.listxattr = erofs_listxattr,
248247
.get_acl = erofs_get_acl,
249248
};
250-

fs/erofs/super.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/*
33
* Copyright (C) 2017-2018 HUAWEI, Inc.
44
* https://www.huawei.com/
5-
* Created by Gao Xiang <[email protected]>
65
*/
76
#include <linux/module.h>
87
#include <linux/buffer_head.h>
@@ -752,4 +751,3 @@ module_exit(erofs_module_exit);
752751
MODULE_DESCRIPTION("Enhanced ROM File System");
753752
MODULE_AUTHOR("Gao Xiang, Chao Yu, Miao Xie, CONSUMER BG, HUAWEI Inc.");
754753
MODULE_LICENSE("GPL");
755-

0 commit comments

Comments
 (0)