Skip to content

Commit 2b3e5dd

Browse files
committed
raise version, minor code formatting
1 parent 1df8fa6 commit 2b3e5dd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

nullfs.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
MODULE_LICENSE("GPL");
4242
MODULE_AUTHOR("Michael Ablassmeier");
43-
MODULE_VERSION("0.6");
43+
MODULE_VERSION("0.7");
4444

4545
#define NULLFS_MAGIC 0x19980123
4646
#define NULLFS_DEFAULT_MODE 0755
@@ -128,7 +128,7 @@ static ssize_t read_null(struct file *filp, char *buf,
128128
size_t count, loff_t *offset) {
129129

130130
/**
131-
* Pretend we have returne some data
131+
* Pretend we have returned some data
132132
* during file read
133133
**/
134134
int nbytes;
@@ -173,7 +173,7 @@ static const struct address_space_operations nullfs_aops = {
173173
.readpage = simple_readpage,
174174
.write_begin = simple_write_begin,
175175
.write_end = simple_write_end,
176-
.direct_IO = noop_direct_IO
176+
.direct_IO = noop_direct_IO
177177
};
178178

179179
static const struct inode_operations nullfs_dir_inode_operations;
@@ -554,4 +554,3 @@ static void __exit nullfs_exit(void)
554554

555555
module_init(nullfs_init);
556556
module_exit(nullfs_exit);
557-

0 commit comments

Comments
 (0)