Commit f4c4b4a6 authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller

[ATM] atm/idt77252.c: Make 2 functions static

This patch makes the following needlessly global functions static:
- idt77252_send()
- idt77252_dev_close()
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0ee897d4
...@@ -2016,8 +2016,7 @@ idt77252_send_skb(struct atm_vcc *vcc, struct sk_buff *skb, int oam) ...@@ -2016,8 +2016,7 @@ idt77252_send_skb(struct atm_vcc *vcc, struct sk_buff *skb, int oam)
return 0; return 0;
} }
int static int idt77252_send(struct atm_vcc *vcc, struct sk_buff *skb)
idt77252_send(struct atm_vcc *vcc, struct sk_buff *skb)
{ {
return idt77252_send_skb(vcc, skb, 0); return idt77252_send_skb(vcc, skb, 0);
} }
...@@ -3072,8 +3071,7 @@ idt77252_dev_open(struct idt77252_dev *card) ...@@ -3072,8 +3071,7 @@ idt77252_dev_open(struct idt77252_dev *card)
return 0; return 0;
} }
void static void idt77252_dev_close(struct atm_dev *dev)
idt77252_dev_close(struct atm_dev *dev)
{ {
struct idt77252_dev *card = dev->dev_data; struct idt77252_dev *card = dev->dev_data;
u32 conf; u32 conf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment