diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-10-16 01:21:40 -0500 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-10-16 01:21:40 -0500 |
| commit | 1f4fa3148bcc7c296ca978456cac92a93276e9e1 (patch) | |
| tree | 842f27240c89b37631bbeb31d31445c0a7ebb369 /include | |
| parent | 3ff0f2d6649df7a3d76678bfe088eee96f43bc1b (diff) | |
ISDN/PPP: Reference struct ipppd directly
Instead of just recording the slot number and then retrieving
the ipppd via that, we can now just keep a pointer and get a
reference which makes sure that it does not go away until
we drop the reference.
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/isdn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/isdn.h b/include/linux/isdn.h index 64c9c128f46d..0d0ce25b333e 100644 --- a/include/linux/isdn.h +++ b/include/linux/isdn.h @@ -410,7 +410,7 @@ typedef struct isdn_net_dev_s { int chargeint; /* Interval between charge-infos */ int pppbind; /* ippp device for bindings */ - int ppp_slot; /* PPPD device slot number */ + struct ipppd *ipppd; /* /dev/ipppX which controls us */ struct sk_buff_head super_tx_queue; /* List of supervisory frames to */ /* be transmitted asap */ |
