diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2014-05-27 17:07:12 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-05-30 17:17:04 -0700 |
commit | 391296c90cfc6812e1214404d6d7649c48d9bfd4 (patch) | |
tree | 0db89b6eff721b5b02e6938d2f2d8387d8abede3 /net/atm | |
parent | 884460178fba4a2b2522c21e85c67db95f166354 (diff) | |
download | op-kernel-dev-391296c90cfc6812e1214404d6d7649c48d9bfd4.zip op-kernel-dev-391296c90cfc6812e1214404d6d7649c48d9bfd4.tar.gz |
atm: remove commented out check
This preprocessor check is commented out ever since this file was added
during the v2.3 development cycle. It is unclear what it purpose might
have been. Whatever it was, it can safely be removed now.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm')
-rw-r--r-- | net/atm/svc.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/net/atm/svc.c b/net/atm/svc.c index 1281049..d8e5d0c2 100644 --- a/net/atm/svc.c +++ b/net/atm/svc.c @@ -263,17 +263,11 @@ static int svc_connect(struct socket *sock, struct sockaddr *sockaddr, goto out; } } -/* - * Not supported yet - * - * #ifndef CONFIG_SINGLE_SIGITF - */ + vcc->qos.txtp.max_pcr = SELECT_TOP_PCR(vcc->qos.txtp); vcc->qos.txtp.pcr = 0; vcc->qos.txtp.min_pcr = 0; -/* - * #endif - */ + error = vcc_connect(sock, vcc->itf, vcc->vpi, vcc->vci); if (!error) sock->state = SS_CONNECTED; |