diff options
author | Mitchell Blank Jr <mitch@sfgoth.com> | 2005-11-29 16:15:18 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-11-29 16:15:18 -0800 |
commit | 50accc9c428273501dd2a6295c84a533dd1fe645 (patch) | |
tree | 54a94b2c84b3a7af78887383b4c828e0a4953fe1 /net/atm/common.c | |
parent | e91a73568b19b4a8145fc6e05314d522ee35a0b1 (diff) | |
download | linux-50accc9c428273501dd2a6295c84a533dd1fe645.tar.bz2 |
[ATM]: attempt to autoload atm drivers
From: Mitchell Blank Jr <mitch@sfgoth.com>
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/common.c')
-rw-r--r-- | net/atm/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/atm/common.c b/net/atm/common.c index 83454e12317d..db9318fc6031 100644 --- a/net/atm/common.c +++ b/net/atm/common.c @@ -424,7 +424,7 @@ int vcc_connect(struct socket *sock, int itf, short vpi, int vci) vcc->qos.rxtp.traffic_class == ATM_ANYCLASS) return -EINVAL; if (likely(itf != ATM_ITF_ANY)) { - dev = atm_dev_lookup(itf); + dev = try_then_request_module(atm_dev_lookup(itf), "atm-device-%d", itf); } else { dev = NULL; spin_lock(&atm_dev_lock); |