Expand tabs to spaces in dp_send_flow_stats.
[openvswitch] / datapath / linux-2.4 / compat-2.4 / compat24.c
1 /*
2  * Distributed under the terms of the GNU GPL version 2.
3  */
4
5 #include <linux/module.h>
6 #include "compat24.h"
7
8 int __init compat24_init(void)
9 {
10         int err;
11
12         rcu_init();
13
14         err = random32_init();
15         if (err)
16                 return err;
17
18         init_kthread();
19
20         return genl_init();
21
22 }
23 module_init(compat24_init);
24
25 void __exit compat24_exit(void)
26 {
27         genl_exit();
28 }
29 module_exit(compat24_exit);