summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-05 08:25:11 -0500
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-05 08:25:11 -0500
commit74408ad71c90519a229f5f99d2c9dca53937d44c (patch)
tree6c74a7aacc302376918877f855fc6449610e35e5 /include
parente2d5b146763e6798738688f5b1b2b30225b4ccdc (diff)
ISDN: New file for net interface config and basic setup
Add a new file isdn_net_lib.c, where code which is shared among different kind of network interface will gradually migrate to. For now, move the ioctl config code out of isdn_{common,net}.c there, and the basic register_netdev() + associated methods.
Diffstat (limited to 'include')
-rw-r--r--include/linux/isdn.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/isdn.h b/include/linux/isdn.h
index e1d2a910400c..2571ec195463 100644
--- a/include/linux/isdn.h
+++ b/include/linux/isdn.h
@@ -312,7 +312,6 @@ struct isdn_netif_ops {
/* Local interface-data */
typedef struct isdn_net_local_s {
ulong magic;
- spinlock_t lock;
struct net_device_stats stats; /* Ethernet Statistics */
int flags; /* Connection-flags */
int dialmax; /* Max. Number of Dial-retries */
@@ -402,7 +401,7 @@ typedef struct isdn_net_dev_s {
struct tasklet_struct tlet;
isdn_net_local *mlp; /* Ptr to master device for all devs*/
- struct isdn_net_dev_s *slave; /* Ptr to Slave device for masters */
+ struct isdn_net_dev_s *slave; /* Ptr to Slave device for masters */ // FIXME kill
struct list_head slaves; /* Members of local->slaves */
struct list_head online; /* Members of local->online */