diff options
Diffstat (limited to 'fs/select.c')
-rw-r--r-- | fs/select.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/select.c b/fs/select.c index d86224154dec..a974082b0824 100644 --- a/fs/select.c +++ b/fs/select.c | |||
@@ -64,7 +64,7 @@ EXPORT_SYMBOL(poll_initwait); | |||
64 | 64 | ||
65 | static void free_poll_entry(struct poll_table_entry *entry) | 65 | static void free_poll_entry(struct poll_table_entry *entry) |
66 | { | 66 | { |
67 | remove_wait_queue(entry->wait_address,&entry->wait); | 67 | remove_wait_queue(entry->wait_address, &entry->wait); |
68 | fput(entry->filp); | 68 | fput(entry->filp); |
69 | } | 69 | } |
70 | 70 | ||
@@ -128,7 +128,7 @@ static void __pollwait(struct file *filp, wait_queue_head_t *wait_address, | |||
128 | entry->filp = filp; | 128 | entry->filp = filp; |
129 | entry->wait_address = wait_address; | 129 | entry->wait_address = wait_address; |
130 | init_waitqueue_entry(&entry->wait, current); | 130 | init_waitqueue_entry(&entry->wait, current); |
131 | add_wait_queue(wait_address,&entry->wait); | 131 | add_wait_queue(wait_address, &entry->wait); |
132 | } | 132 | } |
133 | 133 | ||
134 | #define FDS_IN(fds, n) (fds->in + n) | 134 | #define FDS_IN(fds, n) (fds->in + n) |