diff options
| author | Adrian Bunk <bunk@stusta.de> | 2005-06-25 14:58:35 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 16:24:56 -0700 | 
| commit | 3e206b0a66fcaf39dbef92640ce6a63d51fc5c53 (patch) | |
| tree | 27e2941e1339be892b824434c24af518efd52294 /drivers/isdn/i4l/isdn_net.c | |
| parent | 886cca3a0fda659e17c730c20929134014ebe1f2 (diff) | |
| download | olio-linux-3.10-3e206b0a66fcaf39dbef92640ce6a63d51fc5c53.tar.xz olio-linux-3.10-3e206b0a66fcaf39dbef92640ce6a63d51fc5c53.zip  | |
[PATCH] drivers/isdn/i4l/: possible cleanups
This patch contains the following possible cleanups:
- make needlessly global code static
- remove the following unused global function:
  - isdn_audio.c: isdn_audio_2adpcm_flush
- remove the following unused struct:
  - isdn_net.c: isdn_concap_demand_dial_dops
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/isdn/i4l/isdn_net.c')
| -rw-r--r-- | drivers/isdn/i4l/isdn_net.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/isdn/i4l/isdn_net.c b/drivers/isdn/i4l/isdn_net.c index e2b790e3451..f30e8e63ae0 100644 --- a/drivers/isdn/i4l/isdn_net.c +++ b/drivers/isdn/i4l/isdn_net.c @@ -176,7 +176,7 @@ static __inline__ void isdn_net_zero_frame_cnt(isdn_net_local *lp)  /* Prototypes */ -int isdn_net_force_dial_lp(isdn_net_local *); +static int isdn_net_force_dial_lp(isdn_net_local *);  static int isdn_net_start_xmit(struct sk_buff *, struct net_device *);  static void isdn_net_ciscohdlck_connected(isdn_net_local *lp); @@ -312,7 +312,7 @@ isdn_net_unbind_channel(isdn_net_local * lp)   * Since this function is called every second, simply reset the   * byte-counter of the interface after copying it to the cps-variable.   */ -unsigned long last_jiffies = -HZ; +static unsigned long last_jiffies = -HZ;  void  isdn_net_autohup(void) @@ -1131,7 +1131,7 @@ isdn_net_adjust_hdr(struct sk_buff *skb, struct net_device *dev)  } -void isdn_net_tx_timeout(struct net_device * ndev) +static void isdn_net_tx_timeout(struct net_device * ndev)  {  	isdn_net_local *lp = (isdn_net_local *) ndev->priv; @@ -1424,7 +1424,7 @@ isdn_net_ciscohdlck_alloc_skb(isdn_net_local *lp, int len)  }  /* cisco hdlck device private ioctls */ -int +static int  isdn_ciscohdlck_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)  {  	isdn_net_local *lp = (isdn_net_local *) dev->priv; @@ -2461,7 +2461,7 @@ isdn_net_findif(char *name)   * This is called from the userlevel-routine below or   * from isdn_net_start_xmit().   */ -int +static int  isdn_net_force_dial_lp(isdn_net_local * lp)  {  	if ((!(lp->flags & ISDN_NET_CONNECTED)) && !lp->dialstate) {  |