mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
isdn: Fix missing ifdef in isdn_ppp
The following patch fixes a warning caused by a missing ifdef in isdn_ppp.c. A function was defined, but never used if CONFIG_IPPP_FILTER was not defined. The warning was: 'get_filter' defined but not used Patch is against 2.6.28.1 Signed-off-by: Daniele Venzano <venza@brownhat.org> Acked-by: Karsten Keil <kkeil@suse.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e955281cd6
commit
26285ba358
1 changed files with 2 additions and 0 deletions
|
@ -431,6 +431,7 @@ set_arg(void __user *b, void *val,int len)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_IPPP_FILTER
|
||||||
static int get_filter(void __user *arg, struct sock_filter **p)
|
static int get_filter(void __user *arg, struct sock_filter **p)
|
||||||
{
|
{
|
||||||
struct sock_fprog uprog;
|
struct sock_fprog uprog;
|
||||||
|
@ -465,6 +466,7 @@ static int get_filter(void __user *arg, struct sock_filter **p)
|
||||||
*p = code;
|
*p = code;
|
||||||
return uprog.len;
|
return uprog.len;
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_IPPP_FILTER */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ippp device ioctl
|
* ippp device ioctl
|
||||||
|
|
Loading…
Reference in a new issue