Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Style fix in fs/select.c

Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>

authored by

WANG Cong and committed by
Adrian Bunk
ccf6780d d3e6975e

+2 -2
+2 -2
fs/select.c
··· 64 64 65 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 68 fput(entry->filp); 69 69 } 70 70 ··· 128 128 entry->filp = filp; 129 129 entry->wait_address = wait_address; 130 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 134 #define FDS_IN(fds, n) (fds->in + n)