Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

[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
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -2016,8 +2016,7 @@ idt77252_send_skb(struct atm_vcc *vcc, struct sk_buff *skb, int oam)
	return 0;
}

int
idt77252_send(struct atm_vcc *vcc, struct sk_buff *skb)
static int idt77252_send(struct atm_vcc *vcc, struct sk_buff *skb)
{
	return idt77252_send_skb(vcc, skb, 0);
}
@@ -3072,8 +3071,7 @@ idt77252_dev_open(struct idt77252_dev *card)
	return 0;
}

void
idt77252_dev_close(struct atm_dev *dev)
static void idt77252_dev_close(struct atm_dev *dev)
{
	struct idt77252_dev *card = dev->dev_data;
	u32 conf;