Commit 5f0a9571 authored by David S. Miller's avatar David S. Miller

sysctl_net_802.c: Protect sysctl_tr_rif_timeout usage with CONFIG_TR.

parent be9ca388
......@@ -14,9 +14,12 @@
#include <linux/sysctl.h>
#include <linux/config.h>
#ifdef CONFIG_TR
extern int sysctl_tr_rif_timeout;
#endif
struct ctl_table tr_table[] = {
#ifdef CONFIG_TR
{
.ctl_name = NET_TR_RIF_TIMEOUT,
.procname = "rif_timeout",
......@@ -25,5 +28,6 @@ struct ctl_table tr_table[] = {
.mode = 0644,
.proc_handler = &proc_dointvec
},
#endif /* CONFIG_TR */
{ 0 },
};
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