Commit c5fcb511 authored by Gao Xiang's avatar Gao Xiang
Browse files

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/20210602160634.10757-1-xiang@kernel.org


Reviewed-by: default avatarChao Yu <yuchao0@huawei.com>
Signed-off-by: default avatarGao Xiang <hsiangkao@linux.alibaba.com>
parent 7dea3de7
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -75,4 +75,3 @@ config EROFS_FS_ZIP
	  Enable fixed-sized output compression for EROFS.

	  If you don't want to enable compression feature, say N.
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
/*
 * Copyright (C) 2019 HUAWEI, Inc.
 *             https://www.huawei.com/
 * Created by Gao Xiang <gaoxiang25@huawei.com>
 */
#ifndef __EROFS_FS_COMPRESS_H
#define __EROFS_FS_COMPRESS_H
@@ -85,4 +84,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
		       struct list_head *pagepool);

#endif
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
/*
 * Copyright (C) 2017-2018 HUAWEI, Inc.
 *             https://www.huawei.com/
 * Created by Gao Xiang <gaoxiang25@huawei.com>
 */
#include "internal.h"
#include <linux/prefetch.h>
@@ -315,4 +314,3 @@ const struct address_space_operations erofs_raw_access_aops = {
	.readahead = erofs_raw_access_readahead,
	.bmap = erofs_bmap,
};
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
/*
 * Copyright (C) 2019 HUAWEI, Inc.
 *             https://www.huawei.com/
 * Created by Gao Xiang <gaoxiang25@huawei.com>
 */
#include "compress.h"
#include <linux/module.h>
@@ -407,4 +406,3 @@ int z_erofs_decompress(struct z_erofs_decompress_req *rq,
		return z_erofs_shifted_transform(rq, pagepool);
	return z_erofs_decompress_generic(rq, pagepool);
}
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
/*
 * Copyright (C) 2017-2018 HUAWEI, Inc.
 *             https://www.huawei.com/
 * Created by Gao Xiang <gaoxiang25@huawei.com>
 */
#include "internal.h"

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