diff options
| author | Dave Jones <davej@codemonkey.org.uk> | 2002-10-07 19:25:53 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-07 19:25:53 -0700 |
| commit | 1cc260ff33f695eb4b408cb9b83afb265a9169fc (patch) | |
| tree | d51d46ae37b9eb78ba9b965a7b2f348052ba2fea /fs/pipe.c | |
| parent | 73b333d8c553659684fbd50b938e150116282ac2 (diff) | |
[PATCH] indentation fixes.
As per CodingStyle
Diffstat (limited to 'fs/pipe.c')
| -rw-r--r-- | fs/pipe.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/pipe.c b/fs/pipe.c index 20bba0702007..30d14b9dcd42 100644 --- a/fs/pipe.c +++ b/fs/pipe.c @@ -412,7 +412,7 @@ struct file_operations read_fifo_fops = { .ioctl = pipe_ioctl, .open = pipe_read_open, .release = pipe_read_release, - .fasync = pipe_read_fasync, + .fasync = pipe_read_fasync, }; struct file_operations write_fifo_fops = { @@ -423,7 +423,7 @@ struct file_operations write_fifo_fops = { .ioctl = pipe_ioctl, .open = pipe_write_open, .release = pipe_write_release, - .fasync = pipe_write_fasync, + .fasync = pipe_write_fasync, }; struct file_operations rdwr_fifo_fops = { @@ -434,7 +434,7 @@ struct file_operations rdwr_fifo_fops = { .ioctl = pipe_ioctl, .open = pipe_rdwr_open, .release = pipe_rdwr_release, - .fasync = pipe_rdwr_fasync, + .fasync = pipe_rdwr_fasync, }; struct file_operations read_pipe_fops = { @@ -445,7 +445,7 @@ struct file_operations read_pipe_fops = { .ioctl = pipe_ioctl, .open = pipe_read_open, .release = pipe_read_release, - .fasync = pipe_read_fasync, + .fasync = pipe_read_fasync, }; struct file_operations write_pipe_fops = { @@ -456,7 +456,7 @@ struct file_operations write_pipe_fops = { .ioctl = pipe_ioctl, .open = pipe_write_open, .release = pipe_write_release, - .fasync = pipe_write_fasync, + .fasync = pipe_write_fasync, }; struct file_operations rdwr_pipe_fops = { @@ -467,7 +467,7 @@ struct file_operations rdwr_pipe_fops = { .ioctl = pipe_ioctl, .open = pipe_rdwr_open, .release = pipe_rdwr_release, - .fasync = pipe_rdwr_fasync, + .fasync = pipe_rdwr_fasync, }; struct inode* pipe_new(struct inode* inode) |
