Commit 1cc260ff authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] indentation fixes.

As per CodingStyle
parent 73b333d8
...@@ -412,7 +412,7 @@ struct file_operations read_fifo_fops = { ...@@ -412,7 +412,7 @@ struct file_operations read_fifo_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_read_open, .open = pipe_read_open,
.release = pipe_read_release, .release = pipe_read_release,
.fasync = pipe_read_fasync, .fasync = pipe_read_fasync,
}; };
struct file_operations write_fifo_fops = { struct file_operations write_fifo_fops = {
...@@ -423,7 +423,7 @@ struct file_operations write_fifo_fops = { ...@@ -423,7 +423,7 @@ struct file_operations write_fifo_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_write_open, .open = pipe_write_open,
.release = pipe_write_release, .release = pipe_write_release,
.fasync = pipe_write_fasync, .fasync = pipe_write_fasync,
}; };
struct file_operations rdwr_fifo_fops = { struct file_operations rdwr_fifo_fops = {
...@@ -434,7 +434,7 @@ struct file_operations rdwr_fifo_fops = { ...@@ -434,7 +434,7 @@ struct file_operations rdwr_fifo_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_rdwr_open, .open = pipe_rdwr_open,
.release = pipe_rdwr_release, .release = pipe_rdwr_release,
.fasync = pipe_rdwr_fasync, .fasync = pipe_rdwr_fasync,
}; };
struct file_operations read_pipe_fops = { struct file_operations read_pipe_fops = {
...@@ -445,7 +445,7 @@ struct file_operations read_pipe_fops = { ...@@ -445,7 +445,7 @@ struct file_operations read_pipe_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_read_open, .open = pipe_read_open,
.release = pipe_read_release, .release = pipe_read_release,
.fasync = pipe_read_fasync, .fasync = pipe_read_fasync,
}; };
struct file_operations write_pipe_fops = { struct file_operations write_pipe_fops = {
...@@ -456,7 +456,7 @@ struct file_operations write_pipe_fops = { ...@@ -456,7 +456,7 @@ struct file_operations write_pipe_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_write_open, .open = pipe_write_open,
.release = pipe_write_release, .release = pipe_write_release,
.fasync = pipe_write_fasync, .fasync = pipe_write_fasync,
}; };
struct file_operations rdwr_pipe_fops = { struct file_operations rdwr_pipe_fops = {
...@@ -467,7 +467,7 @@ struct file_operations rdwr_pipe_fops = { ...@@ -467,7 +467,7 @@ struct file_operations rdwr_pipe_fops = {
.ioctl = pipe_ioctl, .ioctl = pipe_ioctl,
.open = pipe_rdwr_open, .open = pipe_rdwr_open,
.release = pipe_rdwr_release, .release = pipe_rdwr_release,
.fasync = pipe_rdwr_fasync, .fasync = pipe_rdwr_fasync,
}; };
struct inode* pipe_new(struct inode* inode) struct inode* pipe_new(struct inode* inode)
......
...@@ -352,7 +352,7 @@ int proc_pid_stat(struct task_struct *task, char * buffer) ...@@ -352,7 +352,7 @@ int proc_pid_stat(struct task_struct *task, char * buffer)
ppid, ppid,
task->pgrp, task->pgrp,
task->session, task->session,
tty_nr, tty_nr,
tty_pgrp, tty_pgrp,
task->flags, task->flags,
task->min_flt, task->min_flt,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment