diff options
author | Rami Rosen <ramirose@gmail.com> | 2008-02-05 19:30:50 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-05 19:30:50 -0500 |
commit | 731a0609df9cef35ae861d31004f50a02ebde6c2 (patch) | |
tree | 411fcdb49b7d20ebbbfd3c58b4c76362f51bab03 /drivers/net/pppol2tp.c | |
parent | 9ec138101f8a79007bc571174976a7814ed616f8 (diff) |
[PPPOL2TP]: Label unused warning when CONFIG_PROC_FS is not set.
When CONFIG_PROC_FS is not set and CONFIG_PPPOL2TP is set,
we have the following warning in build:
drivers/net/pppol2tp.c: In function 'pppol2tp_init':
drivers/net/pppol2tp.c:2472: warning: label
'out_unregister_pppox_proto' defined but not used
This patches fixes this warning by adding appropriate #ifdef.
Signed-off-by: Rami Rosen <ramirose@gmail.com>
Acked-by: James Chapman <jchapman@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/pppol2tp.c')
-rw-r--r-- | drivers/net/pppol2tp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/pppol2tp.c b/drivers/net/pppol2tp.c index 1b51bb668d39..5aa0a8089694 100644 --- a/drivers/net/pppol2tp.c +++ b/drivers/net/pppol2tp.c | |||
@@ -2468,9 +2468,10 @@ static int __init pppol2tp_init(void) | |||
2468 | 2468 | ||
2469 | out: | 2469 | out: |
2470 | return err; | 2470 | return err; |
2471 | 2471 | #ifdef CONFIG_PROC_FS | |
2472 | out_unregister_pppox_proto: | 2472 | out_unregister_pppox_proto: |
2473 | unregister_pppox_proto(PX_PROTO_OL2TP); | 2473 | unregister_pppox_proto(PX_PROTO_OL2TP); |
2474 | #endif | ||
2474 | out_unregister_pppol2tp_proto: | 2475 | out_unregister_pppol2tp_proto: |
2475 | proto_unregister(&pppol2tp_sk_proto); | 2476 | proto_unregister(&pppol2tp_sk_proto); |
2476 | goto out; | 2477 | goto out; |