rcu: fix synchronize_rcu() so that kernel-doc works

Fix RCU's synchronize_rcu() so that it looks like a C function, enabling
it to be recognized as a function with kernel-doc annotation.

Warning(linux-2.6.26-git11//kernel/rcupdate.c:81): No description found for parameter 'synchronize_rcu'
Warning(linux-2.6.26-git11//kernel/rcupdate.c:81): No description found for parameter 'call_rcu'

[akpm@linux-foundation.org: fix comment]
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Randy Dunlap and committed by Ingo Molnar 01dcb044 6a55617e

+1
+1
kernel/rcupdate.c
··· 77 77 * sections are delimited by rcu_read_lock() and rcu_read_unlock(), 78 78 * and may be nested. 79 79 */ 80 + void synchronize_rcu(void); /* Makes kernel-doc tools happy */ 80 81 synchronize_rcu_xxx(synchronize_rcu, call_rcu) 81 82 EXPORT_SYMBOL_GPL(synchronize_rcu); 82 83