Commit 76729985 authored by Jamal Hadi Salim's avatar Jamal Hadi Salim Committed by David S. Miller

[PKT_SCHED]: C99'ify act_police_ops.

parent d51d5d95
...@@ -393,19 +393,19 @@ MODULE_DESCRIPTION("Policing actions"); ...@@ -393,19 +393,19 @@ MODULE_DESCRIPTION("Policing actions");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
struct tc_action_ops act_police_ops = { static struct tc_action_ops act_police_ops = {
NULL, .next = NULL,
"police", .kind = "police",
TCA_ID_POLICE, .type = TCA_ID_POLICE,
TCA_CAP_NONE, .capab = TCA_CAP_NONE,
THIS_MODULE, .owner = THIS_MODULE,
tcf_act_police, .act = tcf_act_police,
tcf_act_police_stats, .get_stats = tcf_act_police_stats,
tcf_act_police_dump, .dump = tcf_act_police_dump,
tcf_act_police_cleanup, .cleanup = tcf_act_police_cleanup,
tcf_hash_search, .lookup = tcf_hash_search,
tcf_act_police_locate, .init = tcf_act_police_locate,
tcf_generic_walker .walk = tcf_generic_walker
}; };
static int __init static int __init
......
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